1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00

install unzip and daemon for yum and apt-get

This commit is contained in:
v2ray 2016-01-13 00:52:26 +01:00
parent a6b662b173
commit e433779dfc

View File

@ -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"