slitaz-tools view tinyutils/startd @ rev 994

tazbox/video: add 3gp files
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 04 13:59:25 2016 +0200 (2016-06-04)
parents 5d80f6fdbdb7
children
line source
1 #!/bin/sh
2 #
3 # Startd - Small wrapper to start daemons on SliTaz.
4 #
6 . /lib/libtaz.sh
7 check_root
9 [ -z "$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