summarylogtreecommitdiffstats
path: root/10-chrony
diff options
context:
space:
mode:
authorFrederik "Freso" S. Olesen2011-10-30 17:53:44 +0100
committerFrederik “Freso” S. Olesen2015-07-12 15:26:43 +0200
commit680a8ed51d34712162d51ce3ac50a315c44d3aeb (patch)
tree8d820ba8a8ca8e1049d36707a409190a57b248cc /10-chrony
parent5879a47f0ed9c78e1db6aa19bb74891b949eebaf (diff)
downloadaur-680a8ed51d34712162d51ce3ac50a315c44d3aeb.tar.gz
networkmanager-dispatcher-chrony: Replace "ntpd" with "chrony".
Diffstat (limited to '10-chrony')
-rw-r--r--10-chrony10
1 files changed, 5 insertions, 5 deletions
diff --git a/10-chrony b/10-chrony
index 8a46c62ba19e..c31ab2f49f74 100644
--- a/10-chrony
+++ b/10-chrony
@@ -1,18 +1,18 @@
#!/bin/bash
-if [ -e "/etc/rc.d/ntpd" ]; then
+if [ -e "/etc/rc.d/chrony" ]; then
case "$2" in
up)
- /etc/rc.d/ntpd start
+ /etc/rc.d/chrony start
;;
vpn-up)
- /etc/rc.d/ntpd start
+ /etc/rc.d/chrony start
;;
down)
- /etc/rc.d/ntpd stop
+ /etc/rc.d/chrony stop
;;
vpn-down)
- /etc/rc.d/ntpd stop
+ /etc/rc.d/chrony stop
;;
esac
fi