3 # Copyright 2015 Theke Solutions
5 # This file is part of Koha.
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 .
/lib
/lsb
/init-functions
24 # Read configuration variable file if it is present
25 [ -r /etc
/default
/koha-common
] && .
/etc
/default
/koha-common
27 # include helper functions
28 if [ -f "/usr/share/koha/bin/koha-functions.sh" ]; then
29 .
"/usr/share/koha/bin/koha-functions.sh"
31 echo "Error: /usr/share/koha/bin/koha-functions.sh not present." 1>&2
37 local scriptname
=$
(basename $0)
42 This script lets you manage the plack daemons for your Koha instances.
45 $scriptname --start|--stop|--restart [--quiet|-q] instancename1 [instancename2...]
46 $scriptname --enable|--disable instancename1 [instancename2]
49 --start Start the plack daemon for the specified instances
50 --stop Stop the plack daemon for the specified instances
51 --restart Restart the plack daemon for the specified instances
52 --enable Enable plack for the specified instances
53 --disable Disable plack for the specified instances
54 --quiet|-q Make the script quiet about non existent instance names
55 (useful for calling from another scripts).
56 --help|-h Display this help message
65 local PIDFILE
="/var/run/koha/${instancename}/plack.pid"
66 local PLACKSOCKET
="/var/run/koha/${instancename}/plack.sock"
67 local PSGIFILE
="/etc/koha/plack.psgi"
68 local NAME
="${instancename}-koha-plack"
70 if [ -e "/etc/koha/sites/${instancename}/plack.psgi" ]; then
71 # pick instance-specific psgi file
72 PSGIFILE
="/etc/koha/sites/${instancename}/plack.psgi"
73 fi # else stick with the default one
75 STARMANOPTS
="-M FindBin --max-requests 50 --workers 2 \
76 --user=${instancename}-koha --group ${instancename}-koha \
79 --access-log /var/log/koha/${instancename}/plack.log \
80 --error-log /var/log/koha/${instancename}/plack-error.log \
81 -E deployment --socket ${PLACKSOCKET} ${PSGIFILE}"
83 if ! is_plack_running
${instancename}; then
84 export KOHA_CONF
="/etc/koha/sites/${instancename}/koha-conf.xml"
86 log_daemon_msg
"Starting Plack daemon for ${instancename}"
88 if ${STARMAN} ${STARMANOPTS}; then
94 log_daemon_msg
"Error: Plack already running for ${instancename}"
101 local instancename
=$1
103 local PIDFILE
="/var/run/koha/${instancename}/plack.pid"
105 if is_plack_running
${instancename}; then
107 log_daemon_msg
"Stopping Plack daemon for ${instancename}"
109 if start-stop-daemon
--pidfile ${PIDFILE} --stop; then
115 log_daemon_msg
"Error: Plack not running for ${instancename}"
122 local instancename
=$1
124 local PIDFILE
="/var/run/koha/${instancename}/plack.pid"
126 if is_plack_running
${instancename}; then
128 log_daemon_msg
"Restarting Plack daemon for ${instancename}"
130 if stop_plack
$instancename && start_plack
$instancename; then
136 log_daemon_msg
"Error: Plack not running for ${instancename}"
143 local instancename
=$1
144 local instancefile
=$
(get_apache_config_for
"$instancename")
146 if ! is_plack_enabled
$instancename; then
147 # Uncomment the plack related lines for OPAC and intranet
148 sed -i 's:^\s*#\(\s*Include /etc/koha/apache-shared-opac-plack.conf\)$:\1:' "$instancefile"
149 sed -i 's:^\s*#\(\s*Include /etc/koha/apache-shared-intranet-plack.conf\)$:\1:' "$instancefile"
150 [ "${quiet}" != "yes" ] && warn
"Plack enabled for ${instancename}"
153 [ "${quiet}" != "yes" ] && warn
"Plack already enabled for ${instancename}"
160 local instancename
=$1
161 local instancefile
=$
(get_apache_config_for
"$instancename")
163 if is_plack_enabled
$instancename; then
164 # Comment out the plack related lines for OPAC and intranet
165 sed -i 's:^\(\s*Include /etc/koha/apache-shared-opac-plack.conf\)$:#\1:' "$instancefile"
166 sed -i 's:^\(\s*Include /etc/koha/apache-shared-intranet-plack.conf\)$:#\1:' "$instancefile"
167 [ "${quiet}" != "yes" ] && warn
"Plack disabled for ${instancename}"
170 [ "${quiet}" != "yes" ] && warn
"Plack already disabled for ${instancename}"
177 local apache_version_ok
="no"
178 local required_modules
="headers proxy_http"
179 local missing_modules
=""
181 if /usr
/sbin
/apache2ctl
-v |
grep -q "Server version: Apache/2.4"; then
182 apache_version_ok
="yes"
185 for module
in ${required_modules}; do
186 if ! /usr
/sbin
/apachectl
-M 2> /dev
/null |
grep -q ${module}; then
187 missing_modules
="${missing_modules}${module} "
191 if [ "${apache_version_ok}" != "yes" ]; then
192 warn
"WARNING: koha-plack requires Apache 2.4.x and you don't have that."
195 if [ "${missing_modules}" != "" ]; then
197 WARNING: koha-plack requires some Apache modules that you are missing.
198 You can install them with:
200 sudo a2enmod ${missing_modules}
209 if [ "$op" = "" ]; then
212 die
"Error: only one action can be specified."
216 STARMAN
=$
(which starman
)
220 # Read command line parameters
221 while [ $# -gt 0 ]; do
245 die
"Error: invalid option switch ($1)" ;;
247 # We expect the remaining stuff are the instance names
253 if [ -z $PERL5LIB ]; then
254 PERL5LIB
="/usr/share/koha/lib"
259 [ "${quiet}" != "yes" ] && check_env_and_warn
261 if [ $# -gt 0 ]; then
262 # We have at least one instance name
265 if is_instance
$name; then
289 if [ "$quiet" = "no" ]; then
290 log_daemon_msg
"Error: Invalid instance name $name"
297 if [ "$quiet" = "no" ]; then
298 warn
"Error: you must provide at least one instance name"