]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/acpi/manifests/init.pp
array handling, try 2
[dsa-puppet.git] / modules / acpi / manifests / init.pp
1 class acpi {
2     if ! $debarchitecture in ['kfreebsd-amd64', kfreebsd-i386'] {
3         package {
4             acpid: ensure => installed
5         }
6
7         if $lsbdistcodename != 'lenny' {
8             package {
9                 acpi-support-base: ensure => installed
10             }
11         }
12     }
13 }