瀏覽代碼

Added check to see if netclient is present or not.

Caleb Gasser 3 年之前
父節點
當前提交
2160ae7070
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      scripts/netclient-install.sh

+ 6 - 2
scripts/netclient-install.sh

@@ -215,8 +215,12 @@ if [ "${KEY}" != "nokey" ]; then
 fi
 
 if [ "${OS}" = "FreeBSD" ]; then
-  echo "Moving netclient executable to \"/usr/sbin/netclient\""
-  mv netclient /usr/sbin  
+  if ! [ -f /usr/sbin/netclient ]; then
+    echo "Moving netclient executable to \"/usr/sbin/netclient\""
+    mv netclient /usr/sbin  
+  else
+    echo "Netclient already present."
+  fi
 fi
 
 if [ "${OS}" = "OpenWRT" ]; then