Bug 14362: PEGI15 Circulation/AgeRestrictionMarkers test fails
[koha.git] / debian / scripts / koha-create-dirs
1 #!/bin/sh
2 #
3 # koha-create-dirs -- Create dirs for a Koha instance.
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 userdir() {
23     local username="$1-koha"
24     local directory="$2"
25     if [ ! -d "$directory" ]
26     then
27         install -d -o "$username" -g "$username" "$directory"
28     fi
29 }
30
31 rootdir() {
32     local directory="$1"
33     if [ ! -d "$directory" ]
34     then
35         install -d -o root -g root "$directory"
36     fi
37 }
38
39 for name in "$@"
40 do
41     rootdir "/var/spool/koha/$name"
42     userdir "$name" "/etc/koha/sites/$name"
43     userdir "$name" "/var/lib/koha/$name"
44     userdir "$name" "/var/lib/koha/$name/authorities"
45     userdir "$name" "/var/lib/koha/$name/authorities/key"
46     userdir "$name" "/var/lib/koha/$name/authorities/register"
47     userdir "$name" "/var/lib/koha/$name/authorities/shadow"
48     userdir "$name" "/var/lib/koha/$name/authorities/tmp"
49     userdir "$name" "/var/lib/koha/$name/biblios"
50     userdir "$name" "/var/lib/koha/$name/biblios/key"
51     userdir "$name" "/var/lib/koha/$name/biblios/register"
52     userdir "$name" "/var/lib/koha/$name/biblios/shadow"
53     userdir "$name" "/var/lib/koha/$name/biblios/tmp"
54     userdir "$name" "/var/lib/koha/$name/plugins"
55     userdir "$name" "/var/lib/koha/$name/uploads"
56     userdir "$name" "/var/lock/koha/$name"
57     userdir "$name" "/var/lock/koha/$name/authorities"
58     userdir "$name" "/var/lock/koha/$name/biblios"
59     userdir "$name" "/var/run/koha/$name"
60     userdir "$name" "/var/run/koha/$name/authorities"
61     userdir "$name" "/var/run/koha/$name/biblios"
62 done
63