summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/linux.pp7
-rw-r--r--manifests/openbsd.pp4
2 files changed, 2 insertions, 9 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index cf79e00..3a35d75 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -10,13 +10,6 @@ class puppet::linux inherits puppet::base {
ensure => $facter_ensure_version,
}
- if !defined(Package["bc"]) {
- if $bc_ensure_version == '' { $bc_ensure_version = 'installed' }
- package { 'bc':
- ensure => $bc_ensure_version,
- }
- }
-
Service['puppet']{
require => Package[puppet],
}
diff --git a/manifests/openbsd.pp b/manifests/openbsd.pp
index cff727e..2e3c493 100644
--- a/manifests/openbsd.pp
+++ b/manifests/openbsd.pp
@@ -19,12 +19,12 @@ class puppet::openbsd inherits puppet::base {
cron {
'puppetd_check':
- command => '/bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep -q "puppet agent" || (sleep `echo $RANDOM/2000*60 | bc` && /usr/local/bin/puppet agent)',
+ command => '/bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep -q "puppet agent" || (sleep $(($RANDOM/2000*60)) && /usr/local/bin/puppet agent)',
user => root,
minute => 0;
'puppetd_restart':
- command => 'sleep `echo $RANDOM/2000*60 | bc` && /bin/kill `/bin/cat /var/run/puppet/agent.pid`; /usr/local/bin/puppet agent',
+ command => 'sleep $((echo $RANDOM/2000*60)) && /bin/kill `/bin/cat /var/run/puppet/agent.pid`; /usr/local/bin/puppet agent',
minute => 0,
hour => 22,
monthday => '*/2',