setclock: fix empty logfile check.

This commit is contained in:
Arne Fitzenreiter
2013-02-02 09:42:05 +01:00
parent 4a29f8541b
commit a747603dc5

View File

@@ -31,7 +31,7 @@ case ${1} in
hwclock --hctosys ${CLOCKPARAMS} &>/dev/null
if [ ! ${?} == 0 ]; then
if [ ! -z /var/log/messages ]; then
if [ -s /var/log/messages ]; then
boot_mesg -n "No RTC found, set time to last log accesstime ... "
DATE=`stat --format "%y" /var/log/messages | cut -d" " -f1`
TIME=`stat --format "%y" /var/log/messages | sed -e "s|\..*||g" | cut -d" " -f2`