|
|
@@ -72,7 +72,7 @@ public class MachineHostPageController {
|
|
|
model.addAttribute("env", env);
|
|
|
model.addAttribute("page", page1);
|
|
|
model.addAttribute("list", pageList.getList());
|
|
|
- return "/machine/host/index";
|
|
|
+ return "/devops/machine/host/index";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "机器所属环境设置页面")
|
|
|
@@ -86,7 +86,7 @@ public class MachineHostPageController {
|
|
|
model.addAttribute("machineId", machineId);
|
|
|
model.addAttribute("environments", envs);
|
|
|
model.addAttribute("env", env);
|
|
|
- return "/machine/host/env";
|
|
|
+ return "/devops/machine/host/env";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "SSH 认证设置页面")
|
|
|
@@ -108,7 +108,7 @@ public class MachineHostPageController {
|
|
|
model.addAttribute("machineIpv4", machineIpv4);
|
|
|
model.addAttribute("ipv4List", ipv4List);
|
|
|
model.addAttribute("sshAuth", machineSshAuth.getSshAuth());
|
|
|
- return "/machine/host/sshauth";
|
|
|
+ return "/devops/machine/host/sshauth";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "SSH 控制台页面")
|
|
|
@@ -130,7 +130,7 @@ public class MachineHostPageController {
|
|
|
sshConnData.setPassword(sshAuth.getPassword());
|
|
|
|
|
|
model.addAttribute("sshConnData", sshConnData);
|
|
|
- return "/machine/host/webssh";
|
|
|
+ return "/devops/machine/host/webssh";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "机器信息详情页面")
|
|
|
@@ -138,13 +138,13 @@ public class MachineHostPageController {
|
|
|
public String hostDetailPage(@PathVariable("machineId") String machineId, Model model) {
|
|
|
MachineInfoVO machineInfoVO = machineHostPage.hostDetailPage(machineId);
|
|
|
model.addAttribute("machine", machineInfoVO);
|
|
|
- return "/machine/host/detail";
|
|
|
+ return "/devops/machine/host/detail";
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "dagnet 日志页面")
|
|
|
@GetMapping("/agentlog/{machineId}")
|
|
|
public String agentLogPage(@PathVariable("machineId") String machineId, Model model) {
|
|
|
model.addAttribute("list", Collections.emptyList());
|
|
|
- return "/machine/host/agentlog";
|
|
|
+ return "/devops/machine/host/agentlog";
|
|
|
}
|
|
|
}
|