3 # koha-create-dirs -- Create dirs for a Koha instance.
4 # Copyright 2010 Catalyst IT, Ltd
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/>.
23 local username
="$1-koha"
25 if [ ! -d "$directory" ]
27 install -d -o "$username" -g "$username" "$directory"
33 if [ ! -d "$directory" ]
35 install -d -o root
-g root
"$directory"
41 rootdir
"/var/spool/koha/$name"
42 userdir
"$name" "/etc/koha/sites/$name"
43 userdir
"$name" "/var/cache/koha/$name"
44 userdir
"$name" "/var/cache/koha/$name/templates"
45 userdir
"$name" "/var/lib/koha/$name"
46 userdir
"$name" "/var/lib/koha/$name/authorities"
47 userdir
"$name" "/var/lib/koha/$name/authorities/key"
48 userdir
"$name" "/var/lib/koha/$name/authorities/register"
49 userdir
"$name" "/var/lib/koha/$name/authorities/shadow"
50 userdir
"$name" "/var/lib/koha/$name/authorities/tmp"
51 userdir
"$name" "/var/lib/koha/$name/biblios"
52 userdir
"$name" "/var/lib/koha/$name/biblios/key"
53 userdir
"$name" "/var/lib/koha/$name/biblios/register"
54 userdir
"$name" "/var/lib/koha/$name/biblios/shadow"
55 userdir
"$name" "/var/lib/koha/$name/biblios/tmp"
56 userdir
"$name" "/var/lib/koha/$name/plugins"
57 userdir
"$name" "/var/lib/koha/$name/uploads"
58 userdir
"$name" "/var/lib/koha/$name/tmp"
59 userdir
"$name" "/var/lock/koha/$name"
60 userdir
"$name" "/var/lock/koha/$name/authorities"
61 userdir
"$name" "/var/lock/koha/$name/biblios"
62 userdir
"$name" "/var/run/koha/$name"
63 userdir
"$name" "/var/run/koha/$name/authorities"
64 userdir
"$name" "/var/run/koha/$name/biblios"