Import Debian changes 1.0.12-1

tinc (1.0.12-1) unstable; urgency=low

  * New upstream release.
  * Bump Standards-Version.
  * Migrate from CDBS to debhelper.
  * Convert source package to 3.0 (quilt) format.
  * Remove useless tinc.modules.
  * Use init.d script from Michael Tokarev, allowing per-network arguments to
    tincd.
  * Remove update-rc.d calls from postinst and postrm.
  * Let the init.d script depend on $remote_fs.
This commit is contained in:
Guus Sliepen 2010-02-04 00:56:45 +01:00
parent 08ed40f17e
commit 0dd8a42607
7 changed files with 34 additions and 49 deletions

10
debian/postinst vendored
View file

@ -28,10 +28,7 @@ set -e
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
# Automatically added by dh_installinit, edited for use with debconf
if [ -x "/etc/init.d/tinc" ]; then
update-rc.d tinc defaults >/dev/null
if [ "$1" = "configure" ] ; then
if dpkg --compare-versions "$2" lt "1.0pre5-4" ; then
RET="true"
@ -46,8 +43,6 @@ if [ -x "/etc/init.d/tinc" ]; then
fi
fi
fi
# End automatically added section
case "$1" in
configure)
@ -80,11 +75,6 @@ case "$1" in
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0