Browse Source

install unzip and daemon for yum and apt-get

v2ray 9 years ago
parent
commit
e433779dfc
1 changed files with 12 additions and 1 deletions
  1. 12 1
      release/install-release.sh

+ 12 - 1
release/install-release.sh

@@ -1,6 +1,17 @@
 #!/bin/bash
 
-echo "Please make sure unzip and daemon are installed before running this script."
+YUM_CMD=$(command -v yum)
+APT_CMD=$(command -v apt-get)
+
+if [ -n "${YUM_CMD}" ]; then
+  echo "Installing unzip and daemon via yum."
+  ${YUM_CMD} -y -q install unzip daemon
+elif [ -n "${APT_CMD}" ]; then
+  echo "Installing unzip and daemon via apt-get."
+  ${APT_CMD} -y -qq install unzip daemon
+else
+  echo "Please make sure unzip and daemon are installed."
+fi
 
 VER="v1.3"