slim 433 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. #
  3. # /etc/rc.d/slim: start/stop slim
  4. #
  5. . /lib/lsb/init-functions
  6. case $1 in
  7. start)
  8. log_info_msg "Yerel ayarlar eklendi..."
  9. yerel_ayar
  10. log_info_msg "SLIM başlatılıyor..."
  11. /usr/bin/slim -d
  12. ;;
  13. stop)
  14. log_info_msg "SLIM durduruluyor..."
  15. killall /usr/bin/slim
  16. ;;
  17. restart)
  18. log_info_msg "SLIM yebaşlatılıyor..."
  19. $0 stop
  20. sleep 2
  21. $0 start
  22. ;;
  23. *)
  24. echo "usage: $0 [start|stop|restart]"
  25. ;;
  26. esac
  27. # End of file