milis/ayarlar/servisler/mbd/init.d/connmand

23 lines
249 B
Text
Raw Normal View History

2017-07-14 14:55:31 +03:00
#!/bin/sh
# /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 :