|
@@ -50,8 +50,8 @@ public class ShellService {
|
|
|
@Value("${usWest118Server.shellpath}")
|
|
|
private String usWest118ServerShellPath;
|
|
|
|
|
|
- @Value("${v2.projectPath}")
|
|
|
- private String v2ProjectPath;
|
|
|
+ @Value("${v3.projectPath}")
|
|
|
+ private String projectPath;
|
|
|
|
|
|
/**
|
|
|
* 创建共享站点 命令
|
|
@@ -314,7 +314,7 @@ public class ShellService {
|
|
|
public void exceShellByServerInfo(String cmd, String ip, Integer port, String username, String password, ShellSSH2Util.StdoutListener stdoutListener) {
|
|
|
long currentTimeMillis = System.currentTimeMillis();
|
|
|
if (password.contains(".cer") || password.contains(".pem")) {
|
|
|
- File pemFile = new File(v2ProjectPath + "/" + password);
|
|
|
+ File pemFile = new File(projectPath + "/" + password);
|
|
|
ShellSSH2Util.execmd(ip, port, username, pemFile, cmd, stdoutListener);
|
|
|
} else {
|
|
|
ShellSSH2Util.execmdByPwd(ip, port, username, password, cmd, stdoutListener);
|