slitaz-tools view tinyutils/startd @ 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 # Startd - Small wrapper to start daemons on SliTaz.
4 #
6 . /lib/libtaz.sh
7 check_root
9 [ ! "$1" ] && echo "Usage: startd [daemon]" && exit 0
11 if [ -x /etc/init.d/$1 ]; then
12 /etc/init.d/$1 start
13 fi
15 exit 0