1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-03 13:53:36 +03:00

显示更多的安装信息

This commit is contained in:
ProxySU 2020-10-31 11:02:54 +08:00
parent 4815a71ce9
commit 7bf01377cb
3 changed files with 22 additions and 22 deletions

View file

@ -671,7 +671,7 @@
<Button x:Name="ButtonEnableRootPassWord" Content="{DynamicResource ButtonEnableRootPassWord}" Grid.Column="0" Grid.Row="1" Margin="5" Click="ButtonEnableRootPassWord_Click"></Button>
<Button x:Name="ButtonEnableRootCert" Content="{DynamicResource ButtonEnableRootCert}" Grid.Column="1" Grid.Row="1" Margin="5" Click="ButtonEnableRootCert_Click"></Button>
<Button x:Name="ButtonRootProhibitsPasswordLogin" Content="{DynamicResource ButtonRootProhibitsPasswordLogin}" Grid.Column="2" Grid.Row="1" Margin="5" Click="ButtonRootProhibitsPasswordLogin_Click"></Button>
<Button Content="test" Grid.Column="3" Grid.Row="2" Margin="10" Click="Button_Click" Visibility="Visible"></Button>
<Button Content="test" Grid.Column="3" Grid.Row="2" Margin="10" Click="Button_Click" Visibility="Collapsed"></Button>
</Grid>
</TabItem>

View file

@ -5606,18 +5606,18 @@ namespace ProxySU
//设置安装软件所用的命令格式
if (getApt == true)
{
sshCmdUpdate = @"apt -qq update";
//sshCmdInstall = @"apt -y -qq install ";
sshCmdUpdate = @"apt update";
//sshCmdInstall = @"apt -y install ";
}
else if (getDnf == true)
{
sshCmdUpdate = @"dnf clean all;dnf -q makecache";
//sshCmdInstall = @"dnf -y -q install ";
sshCmdUpdate = @"dnf clean all;dnf makecache";
//sshCmdInstall = @"dnf -y install ";
}
else if (getYum == true)
{
sshCmdUpdate = @"yum clean all; yum -q makecache";
//sshCmdInstall = @"yum -y -q install ";
sshCmdUpdate = @"yum clean all; yum makecache";
//sshCmdInstall = @"yum -y install ";
}
//检测主机是否为纯ipv6的主机
@ -6082,7 +6082,7 @@ namespace ProxySU
//设置安装软件所用的命令格式
if (getApt == true)
{
//sshCmdUpdate = @"apt -qq update";
//sshCmdUpdate = @"apt update";
sshCmdRemove = @"apt -y autoremove --purge ";
}
else if (getDnf == true)
@ -7495,18 +7495,18 @@ namespace ProxySU
//设置安装软件所用的命令格式
if (getApt == true)
{
sshCmdUpdate = @"apt -qq update";
sshCmdInstall = @"apt -y -qq install dnsutils";
sshCmdUpdate = @"apt update";
sshCmdInstall = @"apt -y install dnsutils";
}
else if (getDnf == true)
{
sshCmdUpdate = @"dnf -q makecache";
sshCmdInstall = @"dnf -y -q install bind-utils";
sshCmdUpdate = @"dnf makecache";
sshCmdInstall = @"dnf -y install bind-utils";
}
else if (getYum == true)
{
sshCmdUpdate = @"yum -q makecache";
sshCmdInstall = @"yum -y -q install bind-utils";
sshCmdUpdate = @"yum makecache";
sshCmdInstall = @"yum -y install bind-utils";
}
sshShellCommand = sshCmdUpdate;
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
@ -7519,18 +7519,18 @@ namespace ProxySU
//设置安装软件所用的命令格式
if (getApt == true)
{
sshCmdUpdate = @"apt -qq update";
sshCmdInstall = @"apt -y -qq install ";
sshCmdUpdate = @"apt update";
sshCmdInstall = @"apt -y install ";
}
else if (getDnf == true)
{
sshCmdUpdate = @"dnf clean all;dnf -q makecache";
sshCmdInstall = @"dnf -y -q install ";
sshCmdUpdate = @"dnf clean all;dnf makecache";
sshCmdInstall = @"dnf -y install ";
}
else if (getYum == true)
{
sshCmdUpdate = @"yum clean all; yum -q makecache";
sshCmdInstall = @"yum -y -q install ";
sshCmdUpdate = @"yum clean all; yum makecache";
sshCmdInstall = @"yum -y install ";
}
//else if (getZypper == true)
//{
@ -8156,10 +8156,10 @@ namespace ProxySU
sshShellCommand = @"apt install -y apt-transport-https";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = @"apt -qq update";
sshShellCommand = @"apt update";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = @"apt -y -qq install caddy";
sshShellCommand = @"apt -y install caddy";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
}

Binary file not shown.