diff options
author | Micah Anderson <micah@riseup.net> | 2010-04-14 14:52:49 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2010-04-14 14:52:49 -0400 |
commit | 4b587a76cbe90bada8231ba2019e7e462b00f17d (patch) | |
tree | c4c92c919a903192c83d4a1d4d5d704d86e2717a /manifests | |
parent | e7d7ccccb32405b7f1d33b3580be8d884732f16e (diff) | |
download | puppet-backupninja-4b587a76cbe90bada8231ba2019e7e462b00f17d.tar.gz puppet-backupninja-4b587a76cbe90bada8231ba2019e7e462b00f17d.tar.bz2 |
change the parameter values in the sys handler to use true/false
values for the default to be more uniform with the other handler
definitions
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/sys.pp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/sys.pp b/manifests/sys.pp index ac42e37..7de319c 100644 --- a/manifests/sys.pp +++ b/manifests/sys.pp @@ -13,16 +13,16 @@ define backupninja::sys($order = 30, $ensure = present, $parentdir = '/var/backups', - $packages = yes, + $packages = true, $packagesfile = '/var/backups/dpkg-selections.txt', - $partitions = yes, + $partitions = true, $partitionsfile = '/var/backups/partitions.__star__.txt', - $dosfdisk = yes, - $hardware = yes, + $dosfdisk = true, + $hardware = true, $hardwarefile = '/var/backups/hardware.txt', - $dohwinfo = yes, - $doluks = no, - $dolvm = no + $dohwinfo = true, + $doluks = false, + $dolvm = false ) { include backupninja::client::defaults file { "${backupninja::client::defaults::configdir}/${order}_${name}.sys": |