Changed behaviour of UFW installation. Do not enable it by deafult as the firewall will get enabled autmatically when a firewall record gets added in ispconfig. Enabling it without that record, the Firewall would lock out the user on next reboot.
| | |
| | | |
| | | public function configure_ufw_firewall() |
| | | { |
| | | if($this->is_update == false) { |
| | | $configfile = 'ufw.conf'; |
| | | if(is_file('/etc/ufw/ufw.conf')) copy('/etc/ufw/ufw.conf', '/etc/ufw/ufw.conf~'); |
| | | $content = rf("tpl/".$configfile.".master"); |
| | |
| | | exec('chmod 600 /etc/ufw/ufw.conf'); |
| | | exec('chown root:root /etc/ufw/ufw.conf'); |
| | | } |
| | | } |
| | | |
| | | public function configure_bastille_firewall() { |
| | | global $conf; |
| | |
| | | # |
| | | |
| | | # set to yes to start on boot |
| | | ENABLED=yes |
| | | ENABLED=no |
| | | |
| | | # set to one of 'off', 'low', 'medium', 'high' |
| | | LOGLEVEL=low |