diff options
author | Micah <micah@riseup.net> | 2016-11-04 13:35:41 +0000 |
---|---|---|
committer | Micah <micah@riseup.net> | 2016-11-04 13:35:41 +0000 |
commit | 584b7aad338206026d62d846122e6bef532a2d2a (patch) | |
tree | e58bac6baf47d069f646bd78519550f4fb0d39a6 /manifests/init.pp | |
parent | bd975e939717891b79fce1d7d91da4ce4528af12 (diff) | |
parent | c7581a1f0e2b64b186a2d7c37e7ba0a9fa2cc1df (diff) |
Merge branch 'puppet4' into 'master'
Puppet4
Fixes stuff for puppet 4
See merge request !54
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4bf126c..3d93d22 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -40,14 +40,14 @@ class apt( mode => '0644'; } - apt_conf { '02show_upgraded': + ::apt::apt_conf { '02show_upgraded': source => [ "puppet:///modules/site_apt/${::fqdn}/02show_upgraded", 'puppet:///modules/site_apt/02show_upgraded', 'puppet:///modules/apt/02show_upgraded' ] } if ( $::virtual == 'vserver' ) { - apt_conf { '03clean_vserver': + ::apt::apt_conf { '03clean_vserver': source => [ "puppet:///modules/site_apt/${::fqdn}/03clean_vserver", 'puppet:///modules/site_apt/03clean_vserver', 'puppet:///modules/apt/03clean_vserver' ], @@ -55,7 +55,7 @@ class apt( } } else { - apt_conf { '03clean': + ::apt::apt_conf { '03clean': source => [ "puppet:///modules/site_apt/${::fqdn}/03clean", 'puppet:///modules/site_apt/03clean', 'puppet:///modules/apt/03clean' ] |