Add koha-list, a script to list all Koha instances.
[koha.git] / debian / scripts / koha-list
1 #!/bin/sh
2 #
3 # koha-instances -- List all 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.
10
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.
15
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/>.
18
19
20 set -e
21
22 is_enabled() {
23     if grep '^[[:space:]]*Include /etc/koha/apache-shared-disable.conf' \
24             "/etc/apache2/sites-available/$name" > /dev/null
25     then
26         return 1
27     else
28         return 0
29     fi
30 }
31
32 all=yes
33 if [ "$1" = --enabled ]
34 then
35     shift
36     all=no
37 fi
38
39 find /etc/koha/sites -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | 
40 sort |
41 while read name
42 do
43     if [ "$all" = yes ] || is_enabled "$name"
44     then
45         echo "$name"
46     fi
47 done