Browse Source

Merge pull request #5893 from mwarning/zerotier

zerotier: fix 'unknown operand' error
lilik-openwrt-22.03
Dirk Brenken 7 years ago
committed by GitHub
parent
commit
7593202902
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      net/zerotier/files/zerotier.init

+ 1
- 1
net/zerotier/files/zerotier.init View File

@ -28,7 +28,7 @@ start_instance() {
rm -rf $CONFIG_PATH rm -rf $CONFIG_PATH
# Create link from CONFIG_PATH to config_path # Create link from CONFIG_PATH to config_path
if [ -n "$config_path" -a $config_path != $CONFIG_PATH ]; then
if [ -n "$config_path" -a "$config_path" != $CONFIG_PATH ]; then
if [ ! -d "$config_path" ]; then if [ ! -d "$config_path" ]; then
echo "ZeroTier config_path does not exist: $config_path" echo "ZeroTier config_path does not exist: $config_path"
return return


Loading…
Cancel
Save