mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
37 lines
592 B
Text
37 lines
592 B
Text
|
#!/bin/bash
|
||
|
# Start/stop/restart the hamachi "zero-conf" VPN service
|
||
|
HAMACHI_DIR=/usr/share/hamachi
|
||
|
|
||
|
hamachi_start() {
|
||
|
# ensure the tun driver is loaded- hamachi fails to start if it is not
|
||
|
/sbin/modprobe tun
|
||
|
$HAMACHI_DIR/hamachid
|
||
|
}
|
||
|
|
||
|
hamachi_stop() {
|
||
|
if [ -e "/var/run/logmein-hamachi/hamachid.pid" ]; then
|
||
|
kill `cat /var/run/logmein-hamachi/hamachid.pid`
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
hamachi_restart() {
|
||
|
hamachi_stop
|
||
|
sleep 1
|
||
|
hamachi_start
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
'start')
|
||
|
hamachi_start
|
||
|
;;
|
||
|
'stop')
|
||
|
hamachi_stop
|
||
|
;;
|
||
|
'restart')
|
||
|
hamachi_restart
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage $0 start|stop|restart"
|
||
|
esac
|
||
|
|