class nodo::laptop inherits nodo::personal { include utils::laptop include firewall::wifi include firewall::openvpn include firewall::ppp include dhclient class { 'fstab': type => 'laptop', } $hibernate = hiera('nodo::laptop::hibernate', false) class { 'crypttab': type => $hibernate ? { false => "laptop", default => "laptop.hibernate", }, } # Hibernation file { "/etc/initramfs-tools/conf.d/resume": owner => "root", group => "root", mode => 0644, content => "RESUME=/dev/mapper/cswap\n", notify => Exec['update-initramfs'], ensure => $hibernate ? { false => absent, default => present, }, } } class nodo::laptop::webdev inherits nodo::laptop { include websites::dev include database include utils::web }