milis/ayarlar/servisler/mbd/init.d/connmand
2017-07-14 14:55:31 +03:00

22 lines
249 B
Bash
Executable file

#!/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 :