mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 09:18:08 +00:00
20 lines
426 B
Plaintext
20 lines
426 B
Plaintext
|
description "GNS3 server"
|
||
|
author "GNS3 Team"
|
||
|
|
||
|
start on filesystem or runlevel [2345]
|
||
|
stop on shutdown
|
||
|
|
||
|
script
|
||
|
echo $$ > /var/run/gns3.pid
|
||
|
exec start-stop-daemon --start -c gns3 --exec /usr/local/bin/gns3server
|
||
|
end script
|
||
|
|
||
|
pre-start script
|
||
|
echo "[`date`] GNS3 Starting" >> /var/log/gns3.log
|
||
|
end script
|
||
|
|
||
|
pre-stop script
|
||
|
rm /var/run/gns3.pid
|
||
|
echo "[`date`] GNS3 Stopping" >> /var/log/gns3.log
|
||
|
end script
|