aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-04-15 15:41:58 +0200
committerintrigeri <intrigeri@boum.org>2012-06-08 15:07:48 +0200
commit0cb3cd816e37a81ffc89e68b774d34930c5acc36 (patch)
tree95f513d402bdf5f3a8b0822e83eb02744e0873f7 /manifests/init.pp
parent1af58e700e2e5c60a3f187b4a41d40755101f4f4 (diff)
downloadpuppet-apt-0cb3cd816e37a81ffc89e68b774d34930c5acc36.tar.gz
puppet-apt-0cb3cd816e37a81ffc89e68b774d34930c5acc36.tar.bz2
Migrate - in class names to _
In newer puppet releases the old way to name class/modules with a -, won't anymore be supported. Conflicts: manifests/unattended_upgrades.pp
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 960f18d..2ae691f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -90,23 +90,23 @@ class apt {
}
apt_conf { "02show_upgraded":
- source => [ "puppet:///modules/site-apt/${fqdn}/02show_upgraded",
- "puppet:///modules/site-apt/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":
- source => [ "puppet:///modules/site-apt/${fqdn}/03clean_vserver",
- "puppet:///modules/site-apt/03clean_vserver",
+ source => [ "puppet:///modules/site_apt/${fqdn}/03clean_vserver",
+ "puppet:///modules/site_apt/03clean_vserver",
"puppet:///modules/apt/03clean_vserver" ],
alias => "03clean";
}
}
else {
apt_conf { "03clean":
- source => [ "puppet:///modules/site-apt/${fqdn}/03clean",
- "puppet:///modules/site-apt/03clean",
+ source => [ "puppet:///modules/site_apt/${fqdn}/03clean",
+ "puppet:///modules/site_apt/03clean",
"puppet:///modules/apt/03clean" ]
}
}