install more files

pull/684/merge
Darien Raymond 2017-11-03 23:42:33 +01:00
parent 1413bb2944
commit b0a132596f
1 changed files with 17 additions and 5 deletions

View File

@ -191,15 +191,27 @@ startV2ray(){
return 0 return 0
} }
installV2Ray(){ copyFile() {
# Install V2Ray binary to /usr/bin/v2ray NAME=$1
mkdir -p /usr/bin/v2ray ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/${NAME}" "/usr/bin/v2ray/${NAME}"`
ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"`
if [[ $? -ne 0 ]]; then if [[ $? -ne 0 ]]; then
colorEcho ${YELLOW} "${ERROR}" colorEcho ${YELLOW} "${ERROR}"
exit exit
fi fi
chmod +x "/usr/bin/v2ray/v2ray" }
makeExecutable() {
chmod +x "/usr/bin/v2ray/$1"
}
installV2Ray(){
# Install V2Ray binary to /usr/bin/v2ray
mkdir -p /usr/bin/v2ray
copyFile v2ray
makeExecutable v2ray
copyFile v2ctl
makeExecutable v2ctl
copyFile geoip.dat
# Install V2Ray server config to /etc/v2ray # Install V2Ray server config to /etc/v2ray
mkdir -p /etc/v2ray mkdir -p /etc/v2ray