CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
dropbear: moved from core collection
[attic/ports/opt-cross.git] / slim / slim.rc
CommitLineData
9c5d2f8c
JB
1#!/bin/sh
2#
3# /etc/rc.d/slim: start/stop slim
4#
5
6case $1 in
7start)
8 /usr/bin/slim -d
9 ;;
10stop)
11 killall /usr/bin/slim
12 ;;
13restart)
14 $0 stop
15 sleep 2
16 $0 start
17 ;;
18*)
19 echo "usage: $0 [start|stop|restart]"
20 ;;
21esac
22
23# End of file