Bug 17301 - Add callnumber to label-edit-batch.pl
[koha.git] / debian / scripts / koha-create-dirs
blobdae0d48d681b19d7618ea34dbb7d26f79eb7b980
1 #!/bin/sh
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.
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/>.
20 set -e
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"
31 rootdir() {
32 local directory="$1"
33 if [ ! -d "$directory" ]
34 then
35 install -d -o root -g root "$directory"
39 for name in "$@"
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