slitaz-tools view tinyutils/stopd @ rev 1037

tazbox: lxpolkit support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 23 10:41:01 2021 +0000 (2021-10-23)
parents 5d80f6fdbdb7
children
line source
1 #!/bin/sh
2 #
3 # Stopd - Small wrapper to stop daemons on SliTaz.
4 #
6 . /lib/libtaz.sh
7 check_root
9 [ -z "$1" ] && echo "Usage: stopd [daemon]" && exit 0
11 if [ -x /etc/init.d/$1 ]; then
12 /etc/init.d/$1 stop
13 fi
15 exit 0