config is in libslp1 1.2.1-7.8ubuntu1.
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 24 | #!/bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
# /proc/net/igmp is present only in a multicast kernel
if uname | grep -q Linux && [ -d /proc/net -a ! -f /proc/net/igmp ]
then
db_input medium libslp1/multicast || true
db_go
fi
# Check for multicast route,
# Disabled for now because it's not clear whether multicast route is really
# needed.
# (Don't forget to add Pre-depends on "iproute | net-tools" if enabling this!)
#if [ -f /bin/netstat ] && ! netstat -rn | grep "224\.0\.0\.0" >/dev/null || \
# [ -f /bin/ip ] && ! ip route show | grep "224\.0\.0\.0" >/dev/null
#then
# db_input medium libslp1/multicast-route || true
# db_go
#fi
|