aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Bilyk <jbilyk@gmail.com>2011-08-05 22:57:56 -0400
committerJeff Bilyk <jbilyk@gmail.com>2011-08-05 22:57:56 -0400
commitb75c73513a5d0d4141a131c3a56103ea5630de6c (patch)
tree32ff8a19207992cc7b102e4c45ca93ffc6dc882f
parent3587c1daa2578e7054ece6153e2c8e86741533d0 (diff)
downloadalpine-conf-b75c73513a5d0d4141a131c3a56103ea5630de6c.tar.bz2
alpine-conf-b75c73513a5d0d4141a131c3a56103ea5630de6c.tar.xz
setup-ntp: allow specifying ntp daemon from command line
-rwxr-xr-xsetup-ntp.in59
1 files changed, 32 insertions, 27 deletions
diff --git a/setup-ntp.in b/setup-ntp.in
index 8211024..65ede2a 100755
--- a/setup-ntp.in
+++ b/setup-ntp.in
@@ -6,46 +6,51 @@ PREFIX=
usage() {
cat <<__EOF__
-usage: setup-ntp [-hn]
+usage: setup-ntp [-h] [-c choice of NTP daemon]
Setup NTP time synchronization
options:
-h Show this help
- -n Don't prompt, just use defaults
+ -c Choice of NTP daemon: chrony openntpd none
__EOF__
exit 1
}
-while getopts "hn" opt; do
+install_ntpchoice() {
+ if [ "$1" = "none" ]; then
+ exit 0
+ elif [ "$1" = "chrony" ]; then
+ if [ "$acfinstalled" != "ERROR:" ]; then
+ apk add acf-chrony -q
+ else
+ apk add chrony -q
+ fi
+
+ echo "10 chronypass" > /etc/chrony/chrony.keys
+
+ /etc/init.d/chronyd start
+ rc-update add chronyd default
+ elif [ "$1" = "openntpd" ]; then
+ apk add openntpd -q
+ /etc/init.d/ntpd start
+ rc-update add ntpd default
+ fi
+}
+
+while getopts "hc:" opt; do
case $opt in
- n) PROMPT="0";;
+ c) ntpchoice="$OPTARG";;
h) usage;;
esac
done
-if [ "$PROMPT" != "0" ]; then
- echo "Which NTP service would you like to use? (openntpd, chrony, none) [openntpd]"
- default_read ntpchoice "openntpd"
- if [ "$ntpchoice" = "none" ]; then
- exit 0
- fi
-fi
-
acfinstalled="`apk version acf-core -q | awk '{print $1}'`"
-if [ "$ntpchoice" = "chrony" ]; then
- if [ "$acfinstalled" != "ERROR:" ]; then
- apk add acf-chrony -q
- else
- apk add chrony -q
- fi
-
- echo "10 chronypass" > /etc/chrony/chrony.keys
-
- /etc/init.d/chronyd start
- rc-update add chronyd default
-elif [ "$ntpchoice" = "openntpd" ]; then
- apk add openntpd -q
- /etc/init.d/ntpd start
- rc-update add ntpd default
+
+if [ -n "$ntpchoice" ]; then
+ install_ntpchoice "$ntpchoice"
+else
+ echo "Which NTP service would you like to use? (openntpd, chrony, none) [openntpd]"
+ default_read ntpchoice "openntpd"
+ install_ntpchoice "$ntpchoice"
fi