milis/talimatname/genel/connman/rc.connmand

23 lines
241 B
Plaintext
Raw Normal View History

2016-05-10 03:28:37 +02:00
#
# /etc/rc.d/connamnd: start/stop connman
#
case $1 in
start)
connmand
;;
stop)
killall connmand
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 [start|stop|restart]"
;;
esac
# End of file
# vim: set ft=sh noet :