File: zabbix-frontend-php.postrm

package info (click to toggle)
zabbix 1%3A5.0.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 135,196 kB
  • sloc: ansic: 250,674; sql: 209,763; php: 195,264; xml: 167,194; javascript: 46,671; sh: 5,339; makefile: 1,723; java: 1,337; cpp: 620; 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#