| | |
| | | var $class_name = 'network_settings_plugin'; |
| | | |
| | | |
| | | //* This function is called during ispconfig installation to determine |
| | | // if a symlink shall be created for this plugin. |
| | | function onInstall() { |
| | | global $conf; |
| | | |
| | | return true; |
| | | |
| | | } |
| | | |
| | | /* |
| | | This function is called when the plugin is loaded |
| | | */ |
| | |
| | | $app->log("Changed Network settings",LOGLEVEL_DEBUG); |
| | | |
| | | exec('/etc/init.d/networking force-reload'); |
| | | } else { |
| | | if(is_file('/etc/debian_version')) { |
| | | $app->log("Network configuration disabled in server settings.",LOGLEVEL_WARN); |
| | | } else { |
| | | $app->log("Network configuration not available for this linux distribution.",LOGLEVEL_DEBUG); |
| | | } |
| | | } |
| | | |
| | | } |