aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp7
1 files changed, 5 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index eaf6bb8..1d0bc38 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -11,7 +11,10 @@ class apt {
default => $apt_clean,
}
- package { apt: ensure => installed }
+ package { apt:
+ ensure => installed,
+ require => undef,
+ }
case $custom_sources_list {
'': {
@@ -21,7 +24,7 @@ class apt {
include lsb
config_file { "/etc/apt/sources.list":
content => $custom_sources_list,
- require => Exec['lsb'];
+ require => Package['lsb'];
}
}
}