8 lines
199 B
Text
8 lines
199 B
Text
case "$ACTION" in
|
|
post)
|
|
# enable sshd, ntpdate, ntpd and dhcpcd services.
|
|
if [ -x usr/bin/systemctl ]; then
|
|
systemctl enable sshd.service ntpdate.service ntpd.service dhcpcd.service
|
|
fi
|
|
;;
|
|
esac
|