summarylogtreecommitdiffstats
path: root/librenms.install
blob: 8581641933f8256b184458e47d7e48ca33bb33e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Maintainer: Nils Czernia <nils[at]czserver[dot]de>

post_install() {
    echo "Adding new User"
    useradd librenms -d /usr/share/webapps/librenms -M -r
    usermod -a -G librenms http
    echo "Changing file permissions"
    chown -R librenms:librenms /usr/share/webapps/${pkgname}
    chown -R librenms:librenms /etc/webapps/${pkgname}
    chown http:http /var/log/${pkgname}
    echo "Install new pear modules"
    echo "You have to configure the database configuration"
    echo "in ${_etcdir}/config.php"
}