diff options
| -rw-r--r-- | puppet/manifests/site.pp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index c89bc7d1..8cfa92ef 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -1,6 +1,10 @@  # set a default exec path  Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin' } +# make sure apt is updated before any packages are installed +include apt::update +Package { require => Exec['apt_updated'] } +  include stdlib  import 'common' | 
