zerotier: remove broken option interface
authorMoritz Warning <moritzwarning@web.de>
Thu, 12 Apr 2018 15:43:13 +0000 (17:43 +0200)
committerMoritz Warning <moritzwarning@web.de>
Thu, 12 Apr 2018 21:20:32 +0000 (23:20 +0200)
Signed-off-by: Moritz Warning <moritzwarning@web.de>
net/zerotier/files/zerotier.config
net/zerotier/files/zerotier.init

index 9d49490e3bffb58850c510265160bd421a350137..b62e15532da49726525df660b7a15dec44c14e1e 100644 (file)
@@ -5,9 +5,6 @@ config zerotier sample_config
        # persistent configuration folder (for ZT controller mode)
        #option config_path '/etc/zerotier'
 
-       # restart ZT when wan status changed
-       option interface 'wan'
-
        #option port '9993'
 
        # Generate secret on first start
index d4831bdd565e51b68c579c250419c2bd9aa3a82c..1c931256ca6e2a3c70c9a36a6fc92ec3d2a7dcc1 100644 (file)
@@ -14,7 +14,7 @@ section_enabled() {
 
 start_instance() {
        local cfg="$1"
-       local port secret interface config_path
+       local port secret config_path
        local ARGS=""
 
        section_enabled "$cfg" || return 1
@@ -22,7 +22,6 @@ start_instance() {
        config_get config_path $cfg 'config_path'
        config_get_bool port $cfg 'port'
        config_get secret $cfg 'secret'
-       config_get interface $cfg 'interface'
 
        # Remove existing link or folder
        rm -rf $CONFIG_PATH
@@ -68,15 +67,10 @@ start_instance() {
        config_list_foreach $cfg 'join' add_join
 
        procd_open_instance
-       procd_add_reload_interface_trigger "$interface"
        procd_set_param command $PROG $ARGS $CONFIG_PATH
        procd_close_instance
 }
 
-service_triggers() {
-       procd_add_reload_trigger zerotier
-}
-
 start_service() {
        config_load 'zerotier'
        config_foreach start_instance 'zerotier'