commit 1ce6ae2823cd10c38340da21962a48f90879bde0 Author: Jacob Appelbaum jacob@appelbaum.net Date: Fri Aug 19 14:31:45 2011 +0200
sync time on first startup and all subsequent startups --- packages/torouter-prep/configs/openntpd-default | 6 ++++++ packages/torouter-prep/src/torouter_config.sh | 1 + 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/packages/torouter-prep/configs/openntpd-default b/packages/torouter-prep/configs/openntpd-default new file mode 100644 index 0000000..318e7bd --- /dev/null +++ b/packages/torouter-prep/configs/openntpd-default @@ -0,0 +1,6 @@ +# /etc/default/openntpd + +# Append '-s' to set the system time when starting in case the offset +# between the local clock and the servers is more than 180 seconds. +# For other options, see man ntpd(8). +DAEMON_OPTS="-f /etc/openntpd/ntpd.conf -s" diff --git a/packages/torouter-prep/src/torouter_config.sh b/packages/torouter-prep/src/torouter_config.sh index 7d78f04..e27c81e 100644 --- a/packages/torouter-prep/src/torouter_config.sh +++ b/packages/torouter-prep/src/torouter_config.sh @@ -93,6 +93,7 @@ cp $config_dir/dnsmasq.conf /etc/dnsmasq.conf
# Configure ntp cp $config_dir/ntp.conf /etc/ntp.conf +cp $config_dir/openntpd-default /etc/default/openntpd
# XXX We should configure ufw here # XXX We should configure denyhosts
tor-commits@lists.torproject.org