7 lines
75 B
Bash
7 lines
75 B
Bash
#!/bin/sh
|
|
if [ -x /etc/init.d/xntp ]
|
|
then
|
|
/etc/init.d/xntp stop
|
|
fi
|
|
exit 0
|