diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-09-22 13:36:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-09-22 13:36:40 -0300 |
commit | db4de439330fcf7b19d3c1c1beb8b5bd802f0b6c (patch) | |
tree | 9957c566edb0af0ae204fd167ec71b59e12ac36a /manifests/laptop.pp | |
parent | f5dc135360a97f6afb0b4dc87bf78106df6b59f1 (diff) | |
download | puppet-nodo-db4de439330fcf7b19d3c1c1beb8b5bd802f0b6c.tar.gz puppet-nodo-db4de439330fcf7b19d3c1c1beb8b5bd802f0b6c.tar.bz2 |
Minor fix
Diffstat (limited to 'manifests/laptop.pp')
-rw-r--r-- | manifests/laptop.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/laptop.pp b/manifests/laptop.pp index b3ab499..6e950c8 100644 --- a/manifests/laptop.pp +++ b/manifests/laptop.pp @@ -14,7 +14,7 @@ class nodo::laptop inherits nodo::personal { group => "root", mode => 0644, ensure => present, - notify => Exec['update-initramfs], + notify => Exec['update-initramfs'], } } @@ -29,7 +29,7 @@ class nodo::laptop inherits nodo::personal { group => "root", mode => 0644, ensure => present, - notify => Exec['update-initramfs], + notify => Exec['update-initramfs'], } # hibernation @@ -38,7 +38,7 @@ class nodo::laptop inherits nodo::personal { group => "root", mode => 0644, content => "RESUME=/dev/mapper/cswap", - notify => Exec['update-initramfs], + notify => Exec['update-initramfs'], ensure => $hibernate ? { false => absent, default => present, |