diff options
Diffstat (limited to 'manifests/base')
-rw-r--r-- | manifests/base/laptop.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/base/laptop.pp b/manifests/base/laptop.pp index 4e07e80..3074787 100644 --- a/manifests/base/laptop.pp +++ b/manifests/base/laptop.pp @@ -31,6 +31,18 @@ class nodo::base::laptop inherits nodo::base::personal { }, } + file { "/etc/uswsusp.conf": + owner => "root", + group => "root", + mode => 0644, + source => 'puppet:///modules/nodo/etc/uswsusp.conf', + require => package['uswsusp'], + ensure => $hibernate ? { + false => absent, + default => present, + }, + } + # Avoid this annoying warning # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673818 file { '/etc/laptop-mode/conf.d/board-specific': |