-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSUSE
More file actions
179 lines (162 loc) · 5.23 KB
/
Copy pathSUSE
File metadata and controls
179 lines (162 loc) · 5.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/bin/sh
#
# WebKit application server
# part of Webware for Python
# www.webwareforpython.org
#
# /etc/init.d/webkit
#
# init.d script for SUSE Linux
#
### BEGIN INIT INFO
# Provides: webkit
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 3 5
# Default-Stop: 0 1 2 6
# Description: WebKit Application Server (Webware for Python)
### END INIT INFO
### START LOCAL CONFIGURATION
# If you store this script in your Webware working directory
# and create a symlink to it as /etc/init.d/webkit_appname,
# it will try to guess your configuration parameters. Otherwise
# you need to hard code the path to the working directory here.
# You can make changes either directly here in the start script or
# you can also override the configuration in the Launch.py script.
# The location and name of the start sript:
START_SCRIPT="$0"
APP_NAME=`basename "$START_SCRIPT"`
if [ -h "$START_SCRIPT" ]; then
START_SCRIPT=`readlink -f "$START_SCRIPT"`
fi
# The location of the working directory:
WORK_DIR=`dirname "$START_SCRIPT"`
if [ "$WORK_DIR" = "/etc/init.d" ]; then
# Put hard coded path to working directory here:
WORK_DIR="."
fi
# Make sure to have the absolute path:
test -d "$WORK_DIR" || exit 5
WORK_DIR=`cd "$WORK_DIR" 2>/dev/null && pwd`
# The app server launch script:
APP_SERVER="$WORK_DIR/AppServer"
test -x "$APP_SERVER" || exit 5
# The app server configuration:
APP_SERVER_CONFIG="$WORK_DIR/Configs/AppServer.config"
test -f "$APP_SERVER_CONFIG" || exit 5
# The WebKit app server log file
# (you can set this in Launch.py as well):
#LOG_FILE="/var/log/$APP_NAME.log"
LOG_FILE="$WORK_DIR/Logs/webkit.log"
# Use this extension if you want to move the last log away
# (also consider using logrotate or something similar):
LOG_OLD=".old"
# The app server process id file
# (you can set this in Launch.py as well):
#PID_FILE="/var/run/$APP_NAME.pid"
PID_FILE="$WORK_DIR/webkit.pid"
# The user and group to run the app server
# (you can set this in Launch.py as well).
# If undefined, it will be the user and group
# running the start script (usually root).
# You should use a low-privilege account,
# like the work dir owner, wwwrun or nobody.
# This will use the owner of the AppServer script:
WEBWARE_USER=`stat -c "%U" "$APP_SERVER"`
WEBWARE_GROUP=`stat -c "%G" "$APP_SERVER"`
# Unset the following variable if you want to store the
# pid and log files as the user running the start script
# (usually root) or set it if you want these files to be
# written after switching to WEBWARE_USER:WEBWARE_GROUP.
LAUNCH_AS_WEBWARE="yes"
# Additional options -u or -O to be passed on to Python:
PYTHONOPTS=
# Additional libraries to be included in the Python path:
PYTHONPATH=
export PYTHONPATH
### END LOCAL CONFIGURATION
# Source SUSE Linux function library:
. /etc/rc.status
rc_reset
case "$1" in
start)
echo -n "Starting $APP_NAME "
# Keep backup of last log file:
if [ "$LOG_OLD" -a -f "$LOG_FILE" ]; then
if [ -s "$LOG_FILE" ]; then
mv "$LOG_FILE" "$LOG_FILE$LOG_OLD"
else
rm "$LOG_FILE"
fi
fi
# Prepare options to set user and group
if [ "$WEBWARE_USER" ]; then
WEBWARE_USER="-u $WEBWARE_USER"
fi
if [ "$WEBWARE_GROUP" ]; then
WEBWARE_GROUP="-g $WEBWARE_GROUP"
fi
# Note that the pid file does not record the pid of the
# wrapper script, but the pid of the Python app server:
if [ "$LAUNCH_AS_WEBWARE" ]; then
# Switch user first, then create pid and log files:
startproc -f -l /dev/null \
$WEBWARE_USER $WEBWARE_GROUP \
"$APP_SERVER" $PYTHONOPTS \
-i "$PID_FILE" -d "$WORK_DIR" -o "$LOG_FILE"
else
# Create pid and log files first, then switch user:
startproc -f -l "$LOG_FILE" \
"$APP_SERVER" $PYTHONOPTS \
-i "$PID_FILE" -d "$WORK_DIR" \
$WEBWARE_USER $WEBWARE_GROUP
fi
rc_status -v
;;
stop)
echo -n "Shutting down $APP_NAME "
# Note that we are terminating the Python app server here;
# the app server wrapper script will follow automatically:
if [ -f "$PID_FILE" ] ; then
killproc -p "$PID_FILE" -TERM python
else
rc_failed 7
fi
rc_status -v
;;
try-restart)
"$0" status >/dev/null && "$0" restart
rc_status
;;
restart)
"$0" stop
"$0" start
rc_status
;;
force-reload|reload)
echo -n "Reloading $APP_NAME "
if [ -f "$PID_FILE" ] ; then
killproc -p "$PID_FILE" -HUP python
else
rc_failed 7
fi
rc_status -v
;;
status)
echo -n "Checking for $APP_NAME "
if [ -f "$PID_FILE" ] ; then
checkproc -p $PID_FILE python
else
rc_failed 1
fi
rc_status -v
;;
probe)
test "$APP_SERVER_CONFIG" -nt "$PID_FILE" && echo reload
;;
*)
echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
exit 1
;;
esac
rc_exit