File: zabbix-frontend-php.postrm

package info (click to toggle)
zabbix 1%3A6.0.14%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 283,384 kB
  • sloc: sql: 868,673; ansic: 322,351; php: 235,311; javascript: 62,116; sh: 5,555; makefile: 2,257; java: 1,397; cpp: 662; xml: 49; perl: 41
file content (15 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

case "$1" in
    purge)
        # Can be removed after Wheezy:
        ucf --purge /etc/zabbix/dbconfig.php || true

        # Remove config files created by the Zabbix setup wizard
        rm -f /etc/zabbix/zabbix.conf.php
    ;;
esac

#DEBHELPER#