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 # fstab if $fstab != false { class { 'fstab': type => 'laptop', } } # crypttab if $crypttab != 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, }, } # upgrade 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 } class nodo::laptop::minimal { $fstab = false $crypttab = false $xorg = false $pam = false # Backups should happen when the box is likely to be online $backup_when = 'everyday at 12:00' # Desktop class include nodo::laptop }