diff options
author | Micah Anderson <micah@riseup.net> | 2011-02-11 11:39:24 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2011-02-11 11:39:24 -0500 |
commit | ff670e5719fb16d72068f143a90b8dad706e6db5 (patch) | |
tree | de4cb7debc8a78634293b6f9cf9bfbb80ffbac6c /manifests | |
parent | 30398146729508903e7846daa2fed951cfdcf5fd (diff) |
fact needs to check now for $operatingsystem, not $kernel, in order to distinguish between different linux distros
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/cron.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron.pp b/manifests/cron.pp index 5f46f67..693a430 100644 --- a/manifests/cron.pp +++ b/manifests/cron.pp @@ -1,7 +1,7 @@ # manifests/cron.pp class puppet::cron inherits puppet { - case $kernel { + case $operatingsystem { linux: { include puppet::cron::linux } debian: { include puppet::cron::debian } openbsd: { include puppet::cron::openbsd } |