summarylogtreecommitdiffstats
path: root/.install
blob: c4aeefd3c07c24892962a591776a34c89075df02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
post_install() {
    # Add swish user and group with a home directory (which will contain all 
    # the packs).
    getent group swish &>/dev/null || groupadd -r swish >/dev/null
    getent passwd swish &>/dev/null || useradd -m -d /home/swish \
-r -g swish swish >/dev/null

    # Add swish user to the rserve group. If this is not done, access to the 
    # socket will be forbidden.
    gpasswd -a swish rserve >/dev/null

    chown -R swish:swish /usr/share/swish-cplint

    printf "\n\n%s\n\n" "To initialize and download all the necessary \
components you must run: \
sudo -u swish swish-cplint -i"
    printf "%s\n\n" "You can then start and enable \
swish-cplint.service to run the server."

}

post_remove() {
    printf "\n\n%s\n" "You can remove /home/swish."
    printf "%s\n\n" "You can also remove swish user and group."
}