tinc (1.0.27-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version.
* Add native systemd unit files.
* Automatically convert networks listed in nets.boot to systemd service
instances on upgrade.
19 lines
411 B
Makefile
Executable file
19 lines
411 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --parallel --with systemd
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-uml --enable-vde
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- install-html
|
|
# Remove info dir file
|
|
rm -f debian/tinc/usr/share/info/dir
|
|
|
|
override_dh_installinit:
|
|
dh_installinit -R
|
|
dh_installinit --name=tinc@ --noscripts
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --restart-after-upgrade
|