mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
caddy arm issue
This commit is contained in:
parent
3f397dbbf7
commit
424e0945db
@ -20,7 +20,10 @@ namespace ProxySuper.Core.Services
|
|||||||
|
|
||||||
public void Uninstall()
|
public void Uninstall()
|
||||||
{
|
{
|
||||||
UninstallCaddy();
|
RunCmd("rm -rf caddy_install.sh");
|
||||||
|
RunCmd("curl -o caddy_install.sh https://raw.githubusercontent.com/proxysu/shellscript/master/Caddy-Naive/caddy-naive-install.sh");
|
||||||
|
RunCmd("yes | bash caddy_install.sh uninstall");
|
||||||
|
RunCmd("rm -rf caddy_install.sh");
|
||||||
WriteOutput("ProxyNaive卸载完成");
|
WriteOutput("ProxyNaive卸载完成");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -395,10 +395,29 @@ namespace ProxySuper.Core.Services
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
protected void InstallCaddy()
|
protected void InstallCaddy()
|
||||||
{
|
{
|
||||||
RunCmd("rm -rf caddy_install.sh");
|
if (CmdType == CmdType.Apt)
|
||||||
RunCmd("curl -o caddy_install.sh https://raw.githubusercontent.com/proxysu/shellscript/master/Caddy-Naive/caddy-naive-install.sh");
|
{
|
||||||
RunCmd("yes | bash caddy_install.sh");
|
RunCmd("sudo apt -y install debian-keyring debian-archive-keyring apt-transport-https");
|
||||||
RunCmd("rm -rf caddy_install.sh");
|
RunCmd("echo yes | curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo apt-key add -");
|
||||||
|
RunCmd("echo yes | curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list");
|
||||||
|
RunCmd("sudo apt -y update");
|
||||||
|
RunCmd("sudo apt -y install caddy");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CmdType == CmdType.Dnf)
|
||||||
|
{
|
||||||
|
RunCmd("dnf -y install 'dnf-command(copr)'");
|
||||||
|
RunCmd("dnf -y copr enable @caddy/caddy");
|
||||||
|
RunCmd("dnf -y install caddy");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CmdType == CmdType.Yum)
|
||||||
|
{
|
||||||
|
RunCmd("yum -y install yum-plugin-copr");
|
||||||
|
RunCmd("yum -y copr enable @caddy/caddy");
|
||||||
|
RunCmd("yum -y install caddy");
|
||||||
|
}
|
||||||
|
|
||||||
RunCmd("systemctl enable caddy.service");
|
RunCmd("systemctl enable caddy.service");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -407,11 +426,25 @@ namespace ProxySuper.Core.Services
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
protected void UninstallCaddy()
|
protected void UninstallCaddy()
|
||||||
{
|
{
|
||||||
RunCmd("rm -rf caddy_install.sh");
|
RunCmd("systemctl stop caddy");
|
||||||
RunCmd("curl -o caddy_install.sh https://raw.githubusercontent.com/proxysu/shellscript/master/Caddy-Naive/caddy-naive-install.sh");
|
if (CmdType == CmdType.Apt)
|
||||||
RunCmd("yes | bash caddy_install.sh uninstall");
|
{
|
||||||
RunCmd("rm -rf caddy_install.sh");
|
RunCmd("sudo apt -y remove caddy");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CmdType == CmdType.Dnf)
|
||||||
|
{
|
||||||
|
RunCmd("dnf -y remove caddy");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CmdType == CmdType.Yum)
|
||||||
|
{
|
||||||
|
RunCmd("yum -y remove caddy");
|
||||||
|
}
|
||||||
|
|
||||||
|
RunCmd("rm -rf /usr/bin/caddy");
|
||||||
RunCmd("rm -rf /usr/share/caddy");
|
RunCmd("rm -rf /usr/share/caddy");
|
||||||
|
RunCmd("rm -rf /etc/caddy");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -435,7 +468,7 @@ namespace ProxySuper.Core.Services
|
|||||||
|
|
||||||
if (string.IsNullOrEmpty(IPv6))
|
if (string.IsNullOrEmpty(IPv6))
|
||||||
{
|
{
|
||||||
throw new Exception("未检测可用的的IP地址");
|
throw new Exception("未检测到可用的的IP地址");
|
||||||
}
|
}
|
||||||
|
|
||||||
OnlyIpv6 = true;
|
OnlyIpv6 = true;
|
||||||
@ -646,12 +679,12 @@ namespace ProxySuper.Core.Services
|
|||||||
// 申请证书
|
// 申请证书
|
||||||
if (OnlyIpv6)
|
if (OnlyIpv6)
|
||||||
{
|
{
|
||||||
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain} --listen-v6 --pre-hook \"service caddy stop\" --post-hook \"service caddy start\"";
|
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain} --listen-v6 --pre-hook \"systemctl stop caddy\" --post-hook \"systemctl start caddy\"";
|
||||||
result = RunCmd(cmd);
|
result = RunCmd(cmd);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain} --pre-hook \"service caddy stop\" --post-hook \"service caddy start\"";
|
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain} --pre-hook \"systemctl stop caddy\" --post-hook \"systemctl start caddy\"";
|
||||||
result = RunCmd(cmd);
|
result = RunCmd(cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -730,15 +763,15 @@ namespace ProxySuper.Core.Services
|
|||||||
{
|
{
|
||||||
if (CmdType == CmdType.Apt)
|
if (CmdType == CmdType.Apt)
|
||||||
{
|
{
|
||||||
return "echo y | apt-get install " + soft;
|
return "apt-get -y install " + soft;
|
||||||
}
|
}
|
||||||
else if (CmdType == CmdType.Dnf)
|
else if (CmdType == CmdType.Dnf)
|
||||||
{
|
{
|
||||||
return "echo y | dnf -y install " + soft;
|
return "dnf -y install " + soft;
|
||||||
}
|
}
|
||||||
else if (CmdType == CmdType.Yum)
|
else if (CmdType == CmdType.Yum)
|
||||||
{
|
{
|
||||||
return "echo y | yum -y install " + soft;
|
return "yum -y install " + soft;
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception("未识别的系统");
|
throw new Exception("未识别的系统");
|
||||||
|
@ -48,8 +48,10 @@ namespace ProxySuper.Core.Services
|
|||||||
|
|
||||||
public void Uninstall()
|
public void Uninstall()
|
||||||
{
|
{
|
||||||
|
EnsureRootAuth();
|
||||||
|
EnsureSystemEnv();
|
||||||
|
|
||||||
RunCmd("systemctl stop trojan-go");
|
RunCmd("systemctl stop trojan-go");
|
||||||
RunCmd("systemctl stop caddy");
|
|
||||||
base.UninstallCaddy();
|
base.UninstallCaddy();
|
||||||
|
|
||||||
RunCmd("rm -rf /usr/local/bin/trojan-go");
|
RunCmd("rm -rf /usr/local/bin/trojan-go");
|
||||||
@ -133,7 +135,6 @@ namespace ProxySuper.Core.Services
|
|||||||
|
|
||||||
private void InstallTrojanGo()
|
private void InstallTrojanGo()
|
||||||
{
|
{
|
||||||
WriteOutput("安装Trojan-Go");
|
|
||||||
RunCmd(@"curl https://raw.githubusercontent.com/proxysu/shellscript/master/trojan-go.sh yes | bash");
|
RunCmd(@"curl https://raw.githubusercontent.com/proxysu/shellscript/master/trojan-go.sh yes | bash");
|
||||||
var success = FileExists("/usr/local/bin/trojan-go");
|
var success = FileExists("/usr/local/bin/trojan-go");
|
||||||
if (success == false)
|
if (success == false)
|
||||||
|
@ -105,6 +105,7 @@ namespace ProxySuper.Core.Services
|
|||||||
public void UninstallProxy()
|
public void UninstallProxy()
|
||||||
{
|
{
|
||||||
EnsureRootAuth();
|
EnsureRootAuth();
|
||||||
|
EnsureSystemEnv();
|
||||||
WriteOutput("卸载Caddy");
|
WriteOutput("卸载Caddy");
|
||||||
UninstallCaddy();
|
UninstallCaddy();
|
||||||
WriteOutput("卸载Xray");
|
WriteOutput("卸载Xray");
|
||||||
@ -153,6 +154,7 @@ namespace ProxySuper.Core.Services
|
|||||||
public void DoUninstallCaddy()
|
public void DoUninstallCaddy()
|
||||||
{
|
{
|
||||||
EnsureRootAuth();
|
EnsureRootAuth();
|
||||||
|
EnsureSystemEnv();
|
||||||
UninstallCaddy();
|
UninstallCaddy();
|
||||||
WriteOutput("************ 卸载Caddy完成 ************");
|
WriteOutput("************ 卸载Caddy完成 ************");
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,5 @@ namespace ProxySuper.Core.ViewModels
|
|||||||
}
|
}
|
||||||
|
|
||||||
public string CommandText { get; set; }
|
public string CommandText { get; set; }
|
||||||
|
|
||||||
public string OutputText { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
VerticalContentAlignment="Top"
|
VerticalContentAlignment="Top"
|
||||||
TextWrapping="WrapWithOverflow"
|
TextWrapping="WrapWithOverflow"
|
||||||
Text="{Binding Path=OutputText}"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<StackPanel Margin="5" Orientation="Horizontal">
|
<StackPanel Margin="5" Orientation="Horizontal">
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
VerticalContentAlignment="Top"
|
VerticalContentAlignment="Top"
|
||||||
TextWrapping="WrapWithOverflow"
|
TextWrapping="WrapWithOverflow"
|
||||||
Text="{Binding Path=OutputText}"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<StackPanel Margin="5" Orientation="Horizontal">
|
<StackPanel Margin="5" Orientation="Horizontal">
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
VerticalContentAlignment="Top"
|
VerticalContentAlignment="Top"
|
||||||
TextWrapping="WrapWithOverflow"
|
TextWrapping="WrapWithOverflow"
|
||||||
Text="{Binding Path=OutputText}"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<StackPanel Margin="5" Orientation="Horizontal">
|
<StackPanel Margin="5" Orientation="Horizontal">
|
||||||
|
@ -76,7 +76,6 @@ namespace ProxySuper.WPF.Views
|
|||||||
outShell += "\n";
|
outShell += "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
ViewModel.OutputText += outShell;
|
|
||||||
Dispatcher.Invoke(() =>
|
Dispatcher.Invoke(() =>
|
||||||
{
|
{
|
||||||
OutputTextBox.AppendText(outShell);
|
OutputTextBox.AppendText(outShell);
|
||||||
|
Loading…
Reference in New Issue
Block a user