summaryrefslogtreecommitdiff
path: root/www-apps/icingaweb2-module-director/files/director
blob: b2721d1e8dcd372e00d9612a772a10791f8d3ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/sbin/openrc-run

description="Icinga2 Director Daemon"
supervisor=supervise-daemon
respawn_period="${respawn_period:-30}"
term_type="${term_type:-linux}"
command=/usr/share/icingaweb2/bin/icinga-director.sh
pidfile="/run/${RC_SVCNAME}.pid"
command_user="nobody:icingaweb2"

depend() {
        need apache2 mysql php-fpm icinga2
}

start_pre() {
        chgrp icingaweb2 /usr/share/icingaweb2/bin/icingacli
        export EINFO_QUIET="${quiet:-yes}"
}

stop_pre()
{
        export EINFO_QUIET="${quiet:-yes}"
}