| | |
| | | //exec('rm -rf '.$data['old']['dir'].$jailkit_chroot_userhome); |
| | | |
| | | $app->system->web_folder_protection($web['document_root'], false); |
| | | |
| | | $userid = intval($app->system->getuid($data['old']['username'])); |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['username']).' ; '; |
| | | $command .= 'userdel -f '.escapeshellcmd($data['old']['username']).' &> /dev/null'; |
| | | exec($command); |
| | | |
| | | |
| | | if(@is_dir($data['old']['dir'].$jailkit_chroot_userhome)) { |
| | | $userid = intval($app->system->getuid($data['old']['username'])); |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['username']).' ; userdel -f'; |
| | | $command .= ' '.escapeshellcmd($data['old']['username']).' &> /dev/null'; |
| | | exec($command); |
| | | |
| | | $this->_delete_homedir($data['old']['dir'].$jailkit_chroot_userhome,$userid,$data['old']['parent_domain_id']); |
| | | |
| | | $app->log("Jailkit Plugin -> delete chroot home:".$data['old']['dir'].$jailkit_chroot_userhome, LOGLEVEL_DEBUG); |
| | |
| | | } |
| | | }*/ |
| | | |
| | | $app->system->usermod($this->data['new']['username'], 0, 0, $this->data['new']['dir'].'/.'.$jailkit_chroot_userhome, '/usr/sbin/jk_chrootsh'); |
| | | $shell = '/usr/sbin/jk_chrootsh'; |
| | | if($this->data['new']['active'] != 'y') $shell = '/bin/false'; |
| | | |
| | | $app->system->usermod($this->data['new']['username'], 0, 0, $this->data['new']['dir'].'/.'.$jailkit_chroot_userhome, $shell); |
| | | $app->system->usermod($this->data['new']['puser'], 0, 0, $this->data['new']['dir'].'/.'.$jailkit_chroot_userhome, '/usr/sbin/jk_chrootsh'); |
| | | |
| | | $this->app->log("Added jailkit user to chroot with command: ".$command, LOGLEVEL_DEBUG); |