aboutsummaryrefslogtreecommitdiff
path: root/network/connman/rc.connmand
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2021-04-21 22:09:01 -0500
committerRobby Workman <rworkman@slackbuilds.org>2021-04-21 22:09:01 -0500
commit3230c51ab9719bf4978c0e9cd13c4bace927a9da (patch)
treeb60317702547b0293dfa04547b07bcb9defdb969 /network/connman/rc.connmand
parent102b594f36b4d12503e9a7df70b0f3332c6b5318 (diff)
network/connman: Removed (no maintainer)
Diffstat (limited to 'network/connman/rc.connmand')
-rw-r--r--network/connman/rc.connmand33
1 files changed, 0 insertions, 33 deletions
diff --git a/network/connman/rc.connmand b/network/connman/rc.connmand
deleted file mode 100644
index cac2087cfa7a0..0000000000000
--- a/network/connman/rc.connmand
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-# Start/stop/restart the connman daemon.
-
-connmand_start() {
- if [ -x /usr/sbin/connmand ]; then
- echo "Starting connman daemon: /usr/sbin/connmand "
- /usr/sbin/connmand
- fi
-}
-
-connmand_stop() {
- killall connmand 2> /dev/null
-}
-
-connmand_restart() {
- connmand_stop
- sleep 1
- connmand_start
-}
-
-case "$1" in
-'start')
- connmand_start
- ;;
-'stop')
- connmand_stop
- ;;
-'restart')
- connmand_restart
- ;;
-*)
- echo "usage $0 start|stop|restart"
-esac