diff options
author | guido <guido@bruo.org> | 2014-04-30 15:39:47 -0400 |
---|---|---|
committer | guido <guido@bruo.org> | 2014-04-30 15:39:47 -0400 |
commit | a59a321f55dac0343394a04006b47e543e95f7c1 (patch) | |
tree | 5028179bed4e0bf6c104d725dee1fd3135f75925 /lib | |
parent | cdc037ed47e6d2a2816601e55e3966c4240e432a (diff) | |
download | leap_cli-a59a321f55dac0343394a04006b47e543e95f7c1.tar.gz leap_cli-a59a321f55dac0343394a04006b47e543e95f7c1.tar.bz2 |
Install ntpd daemon if it's not present on debian.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/leap_cli/remote/tasks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/remote/tasks.rb b/lib/leap_cli/remote/tasks.rb index 3c52162..249c107 100644 --- a/lib/leap_cli/remote/tasks.rb +++ b/lib/leap_cli/remote/tasks.rb @@ -38,12 +38,12 @@ task :install_prerequisites, :max_hosts => MAX_HOSTS do run "apt-get update" end leap.log :updating, "server time" do - run 'test -f /etc/init.d/ntp && /etc/init.d/ntp stop' + run "test -f /etc/init.d/ntp || #{apt_get} install ntp && /etc/init.d/ntp stop" run "test -f /usr/sbin/ntpdate || #{apt_get} install ntpdate" leap.log :running, "ntpdate..." do run "test -f /usr/sbin/ntpdate && ntpdate 0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org" end - run 'test -f /etc/init.d/ntp && /etc/init.d/ntp start' + run "test -f /etc/init.d/ntp && /etc/init.d/ntp start" end leap.log :installing, "required packages" do run "#{apt_get} install #{leap.required_packages}" |