Merge tag 'upstream/1.2.4'

Upstream version 1.2.4
This commit is contained in:
didyouexpectthat 2018-01-12 18:22:33 -08:00
commit 3e92348ad2
393 changed files with 38609 additions and 24914 deletions

1
debian/control vendored
View file

@ -7,7 +7,6 @@ Build-Depends: debhelper (>= 9), liblz4-dev, libnatpmp-dev, ruby-ronn
Vcs-Git: git://github.com/nastools/zerotierone
Vcs-Browser: https://github.com/nastools/zerotierone
Homepage: https://www.zerotier.com
Package: nastools-zerotier-one
Architecture: any
Depends: readynasos (>= 6.6.0), ${shlibs:Depends}, ${misc:Depends},

9
debian/postinst vendored Normal file
View file

@ -0,0 +1,9 @@
#!/bin/sh -e
case "$1" in
configure)
adduser --system --group --home /var/lib/zerotier-one --no-create-home zerotier-one
;;
esac
#DEBHELPER#

16
debian/rules.static vendored Normal file
View file

@ -0,0 +1,16 @@
#!/usr/bin/make -f
CFLAGS=-O3 -fstack-protector-strong
CXXFLAGS=-O3 -fstack-protector-strong
%:
dh $@ --with systemd
override_dh_auto_build:
# make -j 2
override_dh_systemd_start:
dh_systemd_start --restart-after-upgrade
override_dh_installinit:
dh_installinit --name=zerotier-one -- defaults

11
debian/rules.wheezy.static vendored Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/make -f
CFLAGS=-O3 -fstack-protector
CXXFLAGS=-O3 -fstack-protector
%:
dh $@
override_dh_auto_build:
# make -j 2