config is in ulogd 1.24-3ubuntu3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh
# Copyright 2005 Achilleas Kotsis <achille@kotsis.net>
# Licensed under the GNU General Public License, version 2. See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
#
set -e
test $DEBIAN_SCRIPT_DEBUG && set -v -x
# Use debconf
. /usr/share/debconf/confmodule
# if we're upgrading
if [ -n "$2" ] ; then
# Do we have a new configuration file syntax?
if `dpkg --compare-versions "$2" lt 1.23-1`; then
db_input high ulogd/config_syntax_changed || true
db_go
fi
fi
db_stop
exit 0
# vim: set ai et sts=2 sw=2 tw=0:
|