03136efdbe
tinc (1.1~pre12-1) experimental; urgency=medium * New upstream release. * Bump Standards-Version. * Depend on python-wxgtk3.0 for the GUI. * Use dh --with python2. * Add Build-Depends for dh-python. * Update links in debian/control and debian/copyright.
28 lines
567 B
Bash
28 lines
567 B
Bash
#!/bin/sh
|
|
|
|
NETSFILE="/etc/tinc/nets.boot"
|
|
SYSTEM="/lib/systemd/system"
|
|
WANTS="/etc/systemd/system/multi-user.target.wants"
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
upgrade)
|
|
if dpkg --compare-versions "$2" '<<' "1.1~pre11-1"; then
|
|
if [ -f "$NETSFILE" ]; then
|
|
echo -n "Creating systemd service instances from nets.boot:"
|
|
mkdir -p "$WANTS"
|
|
egrep '^[ ]*[a-zA-Z0-9_-]+' $NETSFILE | while read net args; do
|
|
echo -n " $net"
|
|
ln -s "$SYSTEM/tinc@.service" "$WANTS/tinc@$net.service" 2>/dev/null || true
|
|
done
|
|
echo "."
|
|
fi
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|