Vyriesene (spojil som tie 2sh, a pridal sleep 30) ;D
Kód [Vybrat]
#!/bin/bash
case "$1" in
start)
cd /home/elipso && /usr/bin/screen -s /bin/bash -dmS MENO ./run.sh
echo "Server started"
;;
stop)
screen -X -S MENO kill
echo "Server shutting down"
;;
*)
echo "Usage: /etc/init.d/MENO {start|stop}"
exit 1
;;
esac
sleep 30
case "$1" in
start)
cd /var/www5 && /usr/bin/screen -s /bin/bash -dmS MENO node node.js
echo "node.js started"
;;
stop)
screen -X -S MENO kill
echo "Server node.js shutting down"
;;
*)
echo "Usage: /etc/init.d/MENO {start|stop}"
exit 1
;;
esac
exit 0