debian se zacina kurvit
#!/bin/sh
### BEGIN INIT INFO
# Provides: vymrdany-debian
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Should-Start:
# Should-Stop:
# Default-Start: 5
# Default-Stop: 0 1 6
# Short-Description: mrdka
### END INIT INFO
set -e
case "$1" in
start)
/etc/init.d/kdm restart
;;
stop)
echo "picu pico"
;;
*)
echo "Usage: /etc/init.d/mrdka {start|stop}"
exit 1
;;
esac
Parsed in 0.004 seconds