diff --git a/wo/cli/plugins/secure.py b/wo/cli/plugins/secure.py index 1290285..89e4012 100644 --- a/wo/cli/plugins/secure.py +++ b/wo/cli/plugins/secure.py @@ -210,18 +210,9 @@ class WOSecureController(CementBaseController): Log.info(self, "Please Enter valid port number :") port = input("Server SSH port [22]:") pargs.user_input = port - if os.path.isfile('/etc/ssh/sshd_config'): - Log.debug(self, "looking for the current ssh port") - for line in open('/etc/ssh/sshd_config', encoding='utf-8'): - if 'Port' in line: - ssh_line = line.strip() - break - sshport = (ssh_line).split(' ') - current_ssh_port = (sshport[1]).strip() WOShellExec.cmd_exec(self, "sed -i \"s/Port.*/Port " "{port}/\" /etc/ssh/sshd_config" - .format(current=current_ssh_port, - port=pargs.user_input)) + .format(port=pargs.user_input)) WOGit.add(self, ["/etc/ssh"], msg="Adding changed SSH port into Git") if not WOService.restart_service(self, 'ssh'):