From 47af90247485c22326c95621806087f25088520f Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 10 Jan 2011 20:46:10 -0500 Subject: fix the bc dependency (closes: #2690) this is done by removing the hacky `if !defined` on the bc package by removing the package dependency altogether and replacing the places where it is used by shell built-in math functions. this is a follow-up commit to 1455b1f9a55cdffc582fd93fa0bc5c016585760c --- manifests/linux.pp | 7 ------- manifests/openbsd.pp | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) (limited to 'manifests') 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', -- cgit v1.2.3