10 lines
329 B
Bash
Executable file
10 lines
329 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
# Automatically added by dh_installinit/13.11.4
|
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
|
|
if [ -x "/etc/init.d/hwclock.sh" ]; then
|
|
update-rc.d hwclock.sh defaults >/dev/null || exit 1
|
|
fi
|
|
fi
|
|
# End automatically added section
|