You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
580 B
Bash
28 lines
580 B
Bash
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: TeamCity Build Agent
|
|
# Required-Start: $remote_fs $syslog
|
|
# Required-Stop: $remote_fs $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: Start build agent daemon at boot time
|
|
# Description: Enable service provided by daemon.
|
|
### END INIT INFO
|
|
#Provide the correct user name:
|
|
USER="root"
|
|
|
|
case "$1" in
|
|
start)
|
|
su - $USER -c "cd /opt/agent/bin ; ./agent.sh start"
|
|
;;
|
|
stop)
|
|
su - $USER -c "cd /opt/agent/bin ; ./agent.sh stop"
|
|
;;
|
|
*)
|
|
echo "usage start/stop"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
|
|
exit 0 |