2014-01-27 17:13:15 +01:00
|
|
|
case "$ACTION" in
|
|
|
|
post)
|
|
|
|
# enable odroid-led, sshd, ntpdate, ntpd and dhcpcd services.
|
2014-07-28 22:22:16 +02:00
|
|
|
if [ -x /usr/bin/systemctl ]; then
|
|
|
|
systemctl enable odroid-led.service sshd.service ntpdate.service ntpd.service dhcpcd.service
|
2014-07-28 22:30:37 +02:00
|
|
|
elif [ -d etc/runit/runsvdir/default ]; then
|
|
|
|
ln -s /etc/sv/sshd etc/runit/runsvdir/default/
|
|
|
|
ln -s /etc/sv/ntpd etc/runit/runsvdir/default/
|
|
|
|
ln -s /etc/sv/dhcpcd etc/runit/runsvdir/default/
|
2014-07-28 22:22:16 +02:00
|
|
|
fi
|
2014-01-27 17:13:15 +01:00
|
|
|
;;
|
|
|
|
esac
|