slim
This commit is contained in:
parent
79224f65fa
commit
1c28c92e98
|
@ -2,15 +2,21 @@
|
||||||
#
|
#
|
||||||
# /etc/rc.d/slim: start/stop slim
|
# /etc/rc.d/slim: start/stop slim
|
||||||
#
|
#
|
||||||
|
. /lib/lsb/init-functions
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
|
log_info_msg "Yerel ayarlar eklendi..."
|
||||||
|
yerel_ayar
|
||||||
|
log_info_msg "SLIM başlatılıyor..."
|
||||||
/usr/bin/slim -d
|
/usr/bin/slim -d
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
|
log_info_msg "SLIM durduruluyor..."
|
||||||
killall /usr/bin/slim
|
killall /usr/bin/slim
|
||||||
;;
|
;;
|
||||||
restart)
|
restart)
|
||||||
|
log_info_msg "SLIM yebaşlatılıyor..."
|
||||||
$0 stop
|
$0 stop
|
||||||
sleep 2
|
sleep 2
|
||||||
$0 start
|
$0 start
|
||||||
|
|
Loading…
Reference in New Issue