slitaz-tools view tinyutils/stopd @ rev 939

tazbox: fix subox icon when ~/.local/share/applications is absent; fix working with freegeoip; write full list of icons used; all other files: 2015 and insert blank lines.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 17 07:35:02 2015 +0300 (2015-04-17)
parents 41572890bde8
children 3be081525506
line source
1 #!/bin/sh
2 #
3 # Stopd - Small wrapper to stop daemons on SliTaz.
4 #
6 . /lib/libtaz.sh
7 check_root
9 [ ! "$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