You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
279 B
21 lines
279 B
8 years ago
|
#!/bin/sh
|
||
|
|
||
7 years ago
|
. /etc/init.d/globals
|
||
|
|
||
8 years ago
|
case $1 in
|
||
|
start)
|
||
|
if [ -e /var/etc/.ushare ]; then
|
||
7 years ago
|
ushare -D -n "$(hostname)"
|
||
8 years ago
|
fi
|
||
7 years ago
|
;;
|
||
8 years ago
|
stop)
|
||
7 years ago
|
if [ -e /var/etc/.ushare ]; then
|
||
|
trap "" INT
|
||
|
kill -INT $(pidof ushare)
|
||
|
fi
|
||
7 years ago
|
;;
|
||
|
*)
|
||
|
echo "[$BASENAME] Usage: $0 {start|stop}"
|
||
|
;;
|
||
8 years ago
|
esac
|