Bug 10332: Data could exist in the courses table.
[koha.git] / debian / scripts / koha-email-disable
blob615f4f472fc306779eda7a082e47fd787af9aad0
1 #!/bin/sh
3 # koha-email-disable - turn off the email for Koha instances
4 # Copyright 2010 Catalyst IT, Ltd
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 set -e
21 die()
23 echo "$@" 1>&2
24 exit 1
27 warn()
29 echo "$@" 1>&2
32 is_instance()
34 local instancename=$1
36 if find /etc/koha/sites -mindepth 1 -maxdepth 1 \
37 -type d -printf '%f\n'\
38 | grep -q -x $instancename ; then
39 return 0
40 else
41 return 1
45 is_email_enabled()
47 local instancename=$1
49 if [ -e /var/lib/koha/$instancename/email.enabled ]; then
50 return 0
51 else
52 return 1
56 disable_email()
58 local instancename=$1
59 local libdir="/var/lib/koha"
61 rm -f $libdir/$instancename/email.enabled
63 echo "Disabled email for instance $instancename."
66 usage()
68 local scriptname=$0
69 cat <<EOF
70 Disables the email for Koha instances.
72 Usage: $scriptname instancename1 instancename2...
74 EOF
77 # Parse command line.
78 [ $# -ge 1 ] || ( usage ; die "Missing instance name..." )
80 for name in "$@"
82 if is_instance $name; then
83 if is_email_enabled $name; then
84 disable_email $name
85 else
86 warn "Email already disabled for instance $name."
88 else
89 warn "Unknown instance $name."
91 done
93 exit 0