tbrehm
2008-08-01 726e30d5a8d9f5a0f74af9c8d2fabd43fda33820
install/lib/installer_base.lib.php
@@ -626,7 +626,7 @@
        wf("/etc/Bastille/bastille-firewall.cfg", $content);
        if(is_file($dist_init_scripts."/bastille-firewall")) caselog("mv -f $dist_init_scripts/bastille-firewall $dist_init_scripts/bastille-firewall.backup_".date("m_d_Y__H_i_s", $current_date), __FILE__, __LINE__);
        if(is_file($dist_init_scripts."/bastille-firewall")) caselog("mv -f $dist_init_scripts/bastille-firewall $dist_init_scripts/bastille-firewall.backup", __FILE__, __LINE__);
        caselog("cp -f apps/bastille-firewall $dist_init_scripts", __FILE__, __LINE__);
        caselog("chmod 700 $dist_init_scripts/bastille-firewall", __FILE__, __LINE__);
@@ -657,7 +657,7 @@
      $install_dir = $this->conf['ispconfig_install_dir'];
      //* Create the ISPConfig installation directory
      if(!@is_dir($install_dir)) {
      if(!@is_dir("$install_dir")) {
         $command = "mkdir $install_dir";
         caselog($command.' &> /dev/null', __FILE__, __LINE__, "EXECUTED: $command", "Failed to execute the command $command");
      }
@@ -815,6 +815,14 @@
      
      //set the fast cgi starter script to executable
      exec('chmod 755 '.$install_dir.'/interface/bin/php-fcgi');
      //* Make the logs readable for the ispconfig user
      if(@is_file('/var/log/mail.log')) exec('chmod +r /var/log/mail.log');
      if(@is_file('/var/log/mail.warn')) exec('chmod +r /var/log/mail.warn');
      if(@is_file('/var/log/mail.err')) exec('chmod +r /var/log/mail.err');
      if(@is_file('/var/log/messages')) exec('chmod +r /var/log/messages');
   }
   
   public function configure_dbserver()