diff options
| -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,  | 
