File: icinga2-ido-pgsql.config

package info (click to toggle)
icinga2 2.15.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,032 kB
  • sloc: cpp: 97,877; sql: 3,261; cs: 1,636; yacc: 1,584; sh: 1,009; ansic: 890; lex: 420; python: 80; makefile: 62; javascript: 12
file content (21 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh 
set -e

. /usr/share/debconf/confmodule

if [ -f /usr/share/dbconfig-common/dpkg/config.pgsql ]; then
    . /usr/share/dbconfig-common/dpkg/config.pgsql
    dbc_dbname=icinga2
    dbc_dbuser=icinga2
    dbc_authmethod_user="password"
    dbc_go icinga2-ido-pgsql $@
fi

# check if the feature is enabled
if test -L /etc/icinga2/features-enabled/ido-pgsql.conf; then
    db_set icinga2-ido-pgsql/enable "true"
else 
    db_set icinga2-ido-pgsql/enable "false"
fi
db_input high icinga2-ido-pgsql/enable || true
db_go || true