systemd/debian/debian-fixup
Michael Biebl e3c0434f4a Use new dh_installdeb maintscript facility to handle obsolete conffiles.
Bump Build-Depends on debhelper accordingly.

Conflicts:

	debian/changelog
2012-02-28 07:57:19 +01:00

17 lines
248 B
Bash
Executable File

#! /bin/sh
set -e
if [ ! -L /etc/mtab ]; then
ln -sf /proc/mounts /etc/mtab
fi
if [ ! -L /var/run ]; then
rm -rf /var/run
ln -s /run /var/run
fi
if [ ! -L /var/lock ]; then
rm -rf /var/lock
ln -s /run/lock /var/lock
fi
exit 0