class nodo::laptop inherits nodo::personal { include utils::laptop include modprobe::laptop include sysctl::laptop include firewall::wifi include firewall::openvpn include firewall::ppp include dhclient class { 'fstab': type => 'laptop', } 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, }, } # Useful when upgrading from lenny if $lsbdistcodename != 'lenny' { file { "/etc/modprobe.d/madwifi": ensure => absent, } } } class nodo::laptop::webdev inherits nodo::laptop { include websites::dev include database include utils::web }