diff options
author | Bill Nottingham <notting@redhat.com> | 2006-05-23 19:28:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-05-23 19:28:54 +0000 |
commit | 020f2072eb740830873be85d98b421839ff3960c (patch) | |
tree | 699e266819c18a2ce41be5e36d9c552199325f33 /rc.d/rc.sysinit | |
parent | 9706e39ef0c1da41b351d4a59fed7f409874eb4c (diff) | |
download | initscripts-020f2072eb740830873be85d98b421839ff3960c.tar initscripts-020f2072eb740830873be85d98b421839ff3960c.tar.gz initscripts-020f2072eb740830873be85d98b421839ff3960c.tar.bz2 initscripts-020f2072eb740830873be85d98b421839ff3960c.tar.xz initscripts-020f2072eb740830873be85d98b421839ff3960c.zip |
integrate s390 patch - just check for hwclock before running it
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index c5278f0b..9e73cc27 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -140,7 +140,7 @@ case "$SRM" in CLOCKDEF="$CLOCKDEF (srm)" ;; esac -/sbin/hwclock $CLOCKFLAGS +[ -x /sbin/hwclock ] && /sbin/hwclock $CLOCKFLAGS action $"Setting clock $CLOCKDEF: `date`" /bin/true |