Browse Source

Merge pull request #9937 from mwarning/zerotier

zerotier: license change and make sure path exists
lilik-openwrt-22.03
Rosen Penev 5 years ago
committed by GitHub
parent
commit
73a81c586d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions
  1. +2
    -2
      net/zerotier/Makefile
  2. +3
    -0
      net/zerotier/files/etc/init.d/zerotier

+ 2
- 2
net/zerotier/Makefile View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=zerotier
PKG_VERSION:=1.4.4
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/zerotier/ZeroTierOne/tar.gz/$(PKG_VERSION)?
@ -15,7 +15,7 @@ PKG_HASH:=0c11aab77b1c30fb8932e31906fc93fe7cb38c579c33740c1d407ec13d5b3e12
PKG_BUILD_DIR:=$(BUILD_DIR)/ZeroTierOne-$(PKG_VERSION)
PKG_MAINTAINER:=Moritz Warning <moritzwarning@web.de>
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE:=BSL 1.1
PKG_LICENSE_FILES:=LICENSE.txt
PKG_BUILD_PARALLEL:=1


+ 3
- 0
net/zerotier/files/etc/init.d/zerotier View File

@ -39,6 +39,9 @@ start_instance() {
return
fi
# ensure that the symlink target exists
mkdir -p $(dirname $path)
ln -s $config_path $path
fi


Loading…
Cancel
Save