#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
	# Restart init. If it fails, there is nothing we can do, so
	# just ignore the error (NOTE: Borrowed from libc6.postinst)
	telinit u 2>/dev/null || true ; sleep 1
fi

# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
	ldconfig
fi
# End automatically added section


exit 0
