diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-08 00:44:51 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-08 00:44:51 +0000 |
commit | 0effa991c23589b658227a733e172ae31d0233bc (patch) | |
tree | 11b5842fed7f9c134892c20e4be8eb1fe7b3b0d9 /modules | |
parent | 25ae8d5bde6933ce0e9dff261a771abbd6deb7da (diff) | |
download | puppet-0effa991c23589b658227a733e172ae31d0233bc.tar puppet-0effa991c23589b658227a733e172ae31d0233bc.tar.gz puppet-0effa991c23589b658227a733e172ae31d0233bc.tar.bz2 puppet-0effa991c23589b658227a733e172ae31d0233bc.tar.xz puppet-0effa991c23589b658227a733e172ae31d0233bc.zip |
fix variable that were not correctly renamed
Diffstat (limited to 'modules')
-rw-r--r-- | modules/buildsystem/manifests/maintdb.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/buildsystem/manifests/maintdb.pp b/modules/buildsystem/manifests/maintdb.pp index 39bcd7a9..e9dc952d 100644 --- a/modules/buildsystem/manifests/maintdb.pp +++ b/modules/buildsystem/manifests/maintdb.pp @@ -3,11 +3,11 @@ class buildsystem { include sudo $login = "maintdb" $homedir = "/var/lib/maintdb" - $dbdir = "$maintdb_homedir/db" + $dbdir = "$homedir/db" $binpath = "/usr/local/sbin/maintdb" $wrappath = "/usr/local/bin/wrapper.maintdb" $dump = "/var/www/bs/data/maintdb.txt" - $maintdb_unmaintained = "/var/www/bs/data/unmaintained.txt" + $unmaintained = "/var/www/bs/data/unmaintained.txt" user {"$login": ensure => present, |