ftimme
2013-02-12 5f808df28474a05672e251dd0f1f2a7f8027faff
- Fixed FS#2667 - Deletion of alias domain: warning in cron log.
2 files modified
12 ■■■■ changed files
server/plugins-available/apache2_plugin.inc.php 6 ●●●● patch | view | raw | blame | history
server/plugins-available/nginx_plugin.inc.php 6 ●●●● patch | view | raw | blame | history
server/plugins-available/apache2_plugin.inc.php
@@ -699,7 +699,7 @@
                }
                
                if($web_config['add_web_users_to_sshusers_group'] == 'y') {
                    $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod';
                    $command = 'usermod';
                    $command .= ' --groups sshusers';
                    $command .= ' '.escapeshellcmd($data['new']['system_user']);
                    $this->_exec($command);
@@ -1557,7 +1557,7 @@
        $app->uses('system');
        $web_config = $app->getconf->get_server_config($conf['server_id'], 'web');
        
        $app->system->web_folder_protection($data['old']['document_root'],false);
        if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') $app->system->web_folder_protection($data['old']['document_root'],false);
        //* Check if this is a chrooted setup
        if($web_config['website_basedir'] != '' && @is_file($web_config['website_basedir'].'/etc/passwd')) {
@@ -1578,7 +1578,7 @@
            unset($tmp);
        }
        
        exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder));
        if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder));
        
        //* remove mountpoint from fstab
        $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.'    none    bind';
server/plugins-available/nginx_plugin.inc.php
@@ -703,7 +703,7 @@
                }
                
                if($web_config['add_web_users_to_sshusers_group'] == 'y') {
                    $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod';
                    $command = 'usermod';
                    $command .= ' --groups sshusers';
                    $command .= ' '.escapeshellcmd($data['new']['system_user']);
                    $this->_exec($command);
@@ -1623,7 +1623,7 @@
        $app->uses('system');
        $web_config = $app->getconf->get_server_config($conf['server_id'], 'web');
        
        $app->system->web_folder_protection($data['old']['document_root'],false);
        if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') $app->system->web_folder_protection($data['old']['document_root'],false);
        //* Check if this is a chrooted setup
        if($web_config['website_basedir'] != '' && @is_file($web_config['website_basedir'].'/etc/passwd')) {
@@ -1644,7 +1644,7 @@
            unset($tmp);
        }
        
        exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder));
        if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder));
        
        //* remove mountpoint from fstab
        $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.'    none    bind';