summaryrefslogtreecommitdiff
path: root/init.d.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-10-24 08:50:14 +0000
committerRoy Marples <roy@marples.name>2007-10-24 08:50:14 +0000
commit1a673aa11726041a1e5f33364fa893a29c83b313 (patch)
treec5f1671a3bcc1db539dda0bc97780e40c91b2ea8 /init.d.Linux
parent9bb59a93f2c544b58c1ee3575c50f17d3a27cfc1 (diff)
downloadopenrc-1a673aa11726041a1e5f33364fa893a29c83b313.tar.gz
openrc-1a673aa11726041a1e5f33364fa893a29c83b313.tar.bz2
openrc-1a673aa11726041a1e5f33364fa893a29c83b313.tar.xz
Advise not syncing time when running ntp daemons
Diffstat (limited to 'init.d.Linux')
-rwxr-xr-xinit.d.Linux/clock5
1 files changed, 3 insertions, 2 deletions
diff --git a/init.d.Linux/clock b/init.d.Linux/clock
index e5b7039..a52f9ab 100755
--- a/init.d.Linux/clock
+++ b/init.d.Linux/clock
@@ -6,6 +6,7 @@ opts="save show"
description="Sets the local clock to UTC or Local Time."
description_save="Saves the current time in the BIOS."
+description_show="Displays the current time in the BIOS."
depend() {
if [ "${CLOCK_ADJFILE}" = "yes" ]; then
@@ -98,8 +99,8 @@ stop() {
ebegin "Setting hardware clock using the system clock" "[${TBLURB}]"
if [ -n "${utc}" ]; then
if [ "${CLOCK_ADJFILE}" != "yes" ]; then
- # If we have adjtimex then we're probably busybox
- if ! type adjtimex >/dev/null 2>&1; then
+ # Some implementations don't handle adjustments
+ if LC_ALL=C hwclock --help | grep -q "\-\-noadjfile"; then
utc="${utc} --noadjfile"
fi
fi