124 lines
3.2 KiB
Bash
Executable File
124 lines
3.2 KiB
Bash
Executable File
#!/bin/bash
|
||
|
||
# 加载系统函数库(Only for RHEL Linux)
|
||
# [ -f /etc/init.d/functions ] && source /etc/init.d/functions
|
||
|
||
# 自定义action函数,实现通用action功能
|
||
success() {
|
||
echo -en "\\033[60G[\\033[1;32m OK \\033[0;39m]\r"
|
||
return 0
|
||
}
|
||
|
||
failure() {
|
||
local rc=$?
|
||
echo -en "\\033[60G[\\033[1;31mFAILED\\033[0;39m]\r"
|
||
[ -x /bin/plymouth ] && /bin/plymouth --details
|
||
return $rc
|
||
}
|
||
|
||
action() {
|
||
local STRING rc
|
||
|
||
STRING=$1
|
||
echo -n "$STRING "
|
||
shift
|
||
"$@" && success $"$STRING" || failure $"$STRING"
|
||
rc=$?
|
||
echo
|
||
return $rc
|
||
}
|
||
|
||
# 判断命令是否正常执行 函数
|
||
if_success() {
|
||
if [ $? -eq 0 ]; then
|
||
action "$1" /bin/true
|
||
else
|
||
action "$2" /bin/false
|
||
exit 1
|
||
fi
|
||
}
|
||
|
||
Server_Dir=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
|
||
Conf_Dir="$Server_Dir/conf"
|
||
Temp_Dir="$Server_Dir/temp"
|
||
Log_Dir="$Server_Dir/logs"
|
||
URL='更改为你的clash订阅地址'
|
||
|
||
# 临时取消环境变量
|
||
unset http_proxy
|
||
unset https_proxy
|
||
unset no_proxy
|
||
|
||
# 检查url是否有效
|
||
Text1="Clash订阅地址可访问!"
|
||
Text2="Clash订阅地址不可访问!"
|
||
curl -o /dev/null -s -m 10 --connect-timeout 10 -w %{http_code} $URL | grep '[23][0-9][0-9]' &>/dev/null
|
||
if_success $Text1 $Text2
|
||
|
||
# 拉取更新config.yml文件
|
||
Text3="配置文件config.yaml下载成功!"
|
||
Text4="配置文件config.yaml下载失败,退出启动!"
|
||
# wget -q -O $Temp_Dir/clash.yaml $URL
|
||
curl -s -o $Temp_Dir/clash.yaml $URL
|
||
if_success $Text3 $Text4
|
||
|
||
# 取出代理相关配置
|
||
sed -n '/^proxies:/,$p' $Temp_Dir/clash.yaml > $Temp_Dir/proxy.txt
|
||
|
||
# 合并形成新的config.yaml
|
||
cat $Temp_Dir/templete_config.yaml > $Temp_Dir/config.yaml
|
||
cat $Temp_Dir/proxy.txt >> $Temp_Dir/config.yaml
|
||
\cp $Temp_Dir/config.yaml $Conf_Dir/
|
||
|
||
# Configure Clash Dashboard
|
||
Work_Dir=$(cd $(dirname $0); pwd)
|
||
Dashboard_Dir="${Work_Dir}/dashboard/public"
|
||
sed -ri "s@^# external-ui:.*@external-ui: ${Dashboard_Dir}@g" $Conf_Dir/config.yaml
|
||
# Get RESTful API Secret
|
||
Secret=`grep '^secret: ' $Conf_Dir/config.yaml | grep -Po "(?<=secret: ').*(?=')"`
|
||
|
||
# 启动Clash服务
|
||
Text5="服务启动成功!"
|
||
Text6="服务启动失败!"
|
||
# 获取CPU架构 x86_64/aarch64
|
||
get_arch=`/bin/arch`
|
||
if [[ $get_arch =~ "x86_64" ]]; then
|
||
nohup $Server_Dir/bin/clash-linux-amd64 -d $Conf_Dir &> $Log_Dir/clash.log &
|
||
if_success $Text5 $Text6
|
||
elif [[ $get_arch =~ "aarch64" ]]; then
|
||
nohup $Server_Dir/bin/clash-linux-armv7 -d $Conf_Dir &> $Log_Dir/clash.log &
|
||
if_success $Text5 $Text6
|
||
else
|
||
echo -e "\033[31m[ERROR] Unsupported CPU Architecture!\033[0m"
|
||
exit 1
|
||
fi
|
||
|
||
# Output Dashboard access address and Secret
|
||
echo ''
|
||
echo -e "Clash Dashboard 访问地址:http://IP:9090/ui"
|
||
echo -e "Secret:${Secret}"
|
||
echo ''
|
||
|
||
# 添加环境变量(root权限)
|
||
cat>/etc/profile.d/clash.sh<<EOF
|
||
# 开启系统代理
|
||
function proxy_on() {
|
||
export http_proxy=http://127.0.0.1:7890
|
||
export https_proxy=http://127.0.0.1:7890
|
||
export no_proxy=127.0.0.1,localhost
|
||
echo -e "\033[32m[√] 已开启代理\033[0m"
|
||
}
|
||
|
||
# 关闭系统代理
|
||
function proxy_off(){
|
||
unset http_proxy
|
||
unset https_proxy
|
||
unset no_proxy
|
||
echo -e "\033[31m[×] 已关闭代理\033[0m"
|
||
}
|
||
EOF
|
||
|
||
echo -e "请执行以下命令加载环境变量: source /etc/profile.d/clash.sh\n"
|
||
echo -e "请执行以下命令开启系统代理: proxy_on\n"
|
||
echo -e "若要临时关闭系统代理,请执行: proxy_off\n"
|