mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 17:52:17 +03:00
killall process of local user
This commit is contained in:
parent
45daf230af
commit
f42831f536
1 changed files with 4 additions and 1 deletions
|
@ -188,10 +188,12 @@ class Registration:
|
||||||
System.Process.kill_by_pid(int(System.Ahenk.get_pid_number()))
|
System.Process.kill_by_pid(int(System.Ahenk.get_pid_number()))
|
||||||
|
|
||||||
def disable_local_users(self):
|
def disable_local_users(self):
|
||||||
|
import time
|
||||||
passwd_cmd = 'passwd -l {}'
|
passwd_cmd = 'passwd -l {}'
|
||||||
change_home = 'usermod -m -d {0} {1}'
|
change_home = 'usermod -m -d {0} {1}'
|
||||||
change_username = 'usermod -l {0} {1}'
|
change_username = 'usermod -l {0} {1}'
|
||||||
content = self.util.read_file('/etc/passwd')
|
content = self.util.read_file('/etc/passwd')
|
||||||
|
kill_all_process = 'killall -KILL -u {}'
|
||||||
for p in pwd.getpwall():
|
for p in pwd.getpwall():
|
||||||
|
|
||||||
if not sysx.shell_is_interactive(p.pw_shell):
|
if not sysx.shell_is_interactive(p.pw_shell):
|
||||||
|
@ -202,8 +204,9 @@ class Registration:
|
||||||
|
|
||||||
new_home_dir = p.pw_dir.rstrip('/') + '-local/'
|
new_home_dir = p.pw_dir.rstrip('/') + '-local/'
|
||||||
new_username = p.pw_name+'-local'
|
new_username = p.pw_name+'-local'
|
||||||
sysx.killuserprocs(p.pw_uid)
|
self.util.execute(kill_all_process.format(p.pw_name))
|
||||||
self.util.execute(passwd_cmd.format(p.pw_name))
|
self.util.execute(passwd_cmd.format(p.pw_name))
|
||||||
self.util.execute(change_username.format(new_username, p.pw_name))
|
self.util.execute(change_username.format(new_username, p.pw_name))
|
||||||
self.util.execute(change_home.format(new_home_dir, new_username))
|
self.util.execute(change_home.format(new_home_dir, new_username))
|
||||||
self.logger.debug("User: '{0}' will be disabled and changed username and home directory of username".format(p.pw_name))
|
self.logger.debug("User: '{0}' will be disabled and changed username and home directory of username".format(p.pw_name))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue