From b02d7d990e95edad6a9a43080389fbf94bd901d1 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Sun, 11 Jan 2015 20:00:11 +0000 Subject: [PATCH] install cron in case it isn't already installed --- setup/system.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/system.sh b/setup/system.sh index d0c80619..549db583 100755 --- a/setup/system.sh +++ b/setup/system.sh @@ -17,6 +17,7 @@ hide_output apt-get -y upgrade # when generating random numbers for private keys (e.g. during # ldns-keygen). # * unattended-upgrades: Apt tool to install security updates automatically. +# * cron: Runs background processes periodically. # * ntp: keeps the system time correct # * fail2ban: scans log files for repeated failed login attempts and blocks the remote IP at the firewall # * sudo: allows privileged users to execute commands as root without being root @@ -25,7 +26,7 @@ hide_output apt-get -y upgrade apt_install python3 python3-dev python3-pip \ wget curl sudo coreutils bc \ - haveged unattended-upgrades ntp fail2ban + haveged unattended-upgrades cron ntp fail2ban # Allow apt to install system updates automatically every day.