11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# remove (or comment out) the next line if your network addresses change
|
||
|
exit 0
|
||
|
|
||
|
case $IFACE in
|
||
|
eth*)
|
||
|
/etc/init.d/ntp-server restart
|
||
|
;;
|
||
|
esac
|