File: syslog-ng-mod-common.maintscript

package info (click to toggle)
syslog-ng 4.8.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,572 kB
  • sloc: ansic: 177,639; python: 13,035; cpp: 11,611; makefile: 7,012; sh: 5,147; java: 3,651; xml: 3,344; yacc: 1,377; lex: 599; perl: 193; awk: 190; objc: 162
file content (32 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /bin/sh
## Common preinst, postinst and postrm script for syslog-ng-mod-*
## packages. Some of the modules in syslog-ng-3.3 came with a
## 00load-$mod config file, which are being removed in 3.4. This file
## does the necessary dpkg-maintscript-helper voodoo to get rid of
## them.
##
## To avoid duplication, only one file is written, the rest are
## symlinked to it.

set -e

case "${DPKG_MAINTSCRIPT_PACKAGE}" in
        syslog-ng-mod-sql|syslog-ng-mod-mongodb)
                modname="${DPKG_MAINTSCRIPT_PACKAGE#syslog-ng-mod-}"
                ;;
        *)
                echo "rm_conffile voodoo unsupported for package ${DPKG_MAINTSCRIPT_PACKAGE}!" >&2
                exit 1
                ;;
esac

if [ -x "/usr/bin/dpkg-maintscript-helper" ]; then
        if dpkg-maintscript-helper supports rm_conffile; then
                dpkg-maintscript-helper rm_conffile \
                        /etc/syslog-ng/conf.d/00load-${modname}.conf 3.4.0~ -- "$@"
        fi
fi

#DEBHELPER#

exit 0