forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7993e02
commit 1936dfc
Showing
17 changed files
with
559 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Unit] | ||
Description=Tyk API Gateway (LUA Support) | ||
|
||
[Service] | ||
Type=simple | ||
User=root | ||
Group=root | ||
ExecStart=/opt/tyk-gateway/tyk-lua --conf=/opt/tyk-gateway/tyk.conf | ||
Restart=always | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Unit] | ||
Description=Tyk API Gateway (Python Support) | ||
|
||
[Service] | ||
Type=simple | ||
User=root | ||
Group=root | ||
ExecStart=/opt/tyk-gateway/tyk-python --conf=/opt/tyk-gateway/tyk.conf | ||
Restart=always | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
user="root" | ||
group="root" | ||
chroot="/" | ||
chdir="/" | ||
nice="" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
user="root" | ||
group="root" | ||
chroot="/" | ||
chdir="/" | ||
nice="" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
#!/bin/sh | ||
# Init script for tyk-gateway | ||
# Maintained by | ||
# Generated by pleaserun. | ||
# Implemented based on LSB Core 3.1: | ||
# * Sections: 20.2, 20.3 | ||
# | ||
### BEGIN INIT INFO | ||
# Provides: tyk-gateway | ||
# Required-Start: $remote_fs $syslog | ||
# Required-Stop: $remote_fs $syslog | ||
# Default-Start: 2 3 4 5 | ||
# Default-Stop: 0 1 6 | ||
# Short-Description: | ||
# Description: no description given | ||
### END INIT INFO | ||
|
||
PATH=/sbin:/usr/sbin:/bin:/usr/bin | ||
export PATH | ||
|
||
name=tyk-gateway-lua | ||
program=/opt/tyk-gateway/tyk-lua | ||
args='--conf=/opt/tyk-gateway/tyk.conf' | ||
pidfile="/var/run/$name.pid" | ||
|
||
[ -r /etc/default/$name ] && . /etc/default/$name | ||
[ -r /etc/sysconfig/$name ] && . /etc/sysconfig/$name | ||
|
||
trace() { | ||
logger -t "/etc/init.d/tyk-gateway" "$@" | ||
} | ||
|
||
emit() { | ||
trace "$@" | ||
echo "$@" | ||
} | ||
|
||
start() { | ||
|
||
# Ensure the log directory is setup correctly. | ||
[ ! -d "/var/log/" ] && mkdir "/var/log/" | ||
chown "$user":"$group" "/var/log/" | ||
chmod 755 "/var/log/" | ||
|
||
|
||
# Setup any environmental stuff beforehand | ||
|
||
|
||
# Run the program! | ||
|
||
chroot --userspec "$user":"$group" "$chroot" sh -c " | ||
cd \"$chdir\" | ||
exec \"$program\" $args | ||
" >> /var/log/tyk-gateway.stdout 2>> /var/log/tyk-gateway.stderr & | ||
|
||
# Generate the pidfile from here. If we instead made the forked process | ||
# generate it there will be a race condition between the pidfile writing | ||
# and a process possibly asking for status. | ||
echo $! > $pidfile | ||
|
||
emit "$name started" | ||
return 0 | ||
} | ||
|
||
stop() { | ||
# Try a few times to kill TERM the program | ||
if status ; then | ||
pid=$(cat "$pidfile") | ||
trace "Killing $name (pid $pid) with SIGTERM" | ||
kill -TERM $pid | ||
# Wait for it to exit. | ||
for i in 1 2 3 4 5 ; do | ||
trace "Waiting $name (pid $pid) to die..." | ||
status || break | ||
sleep 1 | ||
done | ||
if status ; then | ||
emit "$name stop failed; still running." | ||
else | ||
emit "$name stopped." | ||
fi | ||
fi | ||
} | ||
|
||
status() { | ||
if [ -f "$pidfile" ] ; then | ||
pid=$(cat "$pidfile") | ||
if ps -p $pid > /dev/null 2> /dev/null ; then | ||
# process by this pid is running. | ||
# It may not be our pid, but that's what you get with just pidfiles. | ||
# TODO(sissel): Check if this process seems to be the same as the one we | ||
# expect. It'd be nice to use flock here, but flock uses fork, not exec, | ||
# so it makes it quite awkward to use in this case. | ||
return 0 | ||
else | ||
return 2 # program is dead but pid file exists | ||
fi | ||
else | ||
return 3 # program is not running | ||
fi | ||
} | ||
|
||
force_stop() { | ||
if status ; then | ||
stop | ||
status && kill -KILL $(cat "$pidfile") | ||
fi | ||
} | ||
|
||
|
||
case "$1" in | ||
force-start|start|stop|force-stop|restart) | ||
trace "Attempting '$1' on tyk-gateway" | ||
;; | ||
esac | ||
|
||
case "$1" in | ||
force-start) | ||
PRESTART=no | ||
exec "$0" start | ||
;; | ||
start) | ||
status | ||
code=$? | ||
if [ $code -eq 0 ]; then | ||
emit "$name is already running" | ||
exit $code | ||
else | ||
start | ||
exit $? | ||
fi | ||
;; | ||
stop) stop ;; | ||
force-stop) force_stop ;; | ||
status) | ||
status | ||
code=$? | ||
if [ $code -eq 0 ] ; then | ||
emit "$name is running" | ||
else | ||
emit "$name is not running" | ||
fi | ||
exit $code | ||
;; | ||
restart) | ||
|
||
stop && start | ||
;; | ||
*) | ||
echo "Usage: $SCRIPTNAME {start|force-start|stop|force-start|force-stop|status|restart}" >&2 | ||
exit 3 | ||
;; | ||
esac | ||
|
||
exit $? |
Oops, something went wrong.