summarylogtreecommitdiffstats
path: root/install
blob: 7fbc5eddd850bee145efdce12bc16d2c8d77d2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# care about existing files
function installdir() {
    local owner="$1"
    local moddir="$2"
    local modfile="$3"
    local directory="$4"

    mkdir -p "$directory"
    find $directory -exec chown "$owner" {} \;
    find $directory -type f -exec chmod "$modfile" {} \;
    find $directory -type d -exec chmod "$moddir" {} \;
}


post_install() {
    cp -n /etc/webapps/sabre-zarafa/config.example.inc.php /etc/webapps/sabre-zarafa/config.inc.php
    
    installdir http:http 0700 0600 /var/log/sabre-zarafa
    installdir http:http 0700 0600 /var/lib/sabre-zarafa
}