From 6fca4b60195e291c3f982dc54007c4bef485c62a Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sat, 24 Oct 2015 11:45:11 +0200 Subject: Remove broken zabbix 1.x packages Unusable (Bug #3779) and dead. --- config/zabbix-agent/zabbix-agent.xml | 263 ----------------------------------- 1 file changed, 263 deletions(-) delete mode 100644 config/zabbix-agent/zabbix-agent.xml diff --git a/config/zabbix-agent/zabbix-agent.xml b/config/zabbix-agent/zabbix-agent.xml deleted file mode 100644 index 885a54e3..00000000 --- a/config/zabbix-agent/zabbix-agent.xml +++ /dev/null @@ -1,263 +0,0 @@ - - - zabbixagent - Services: Zabbix Agent - Monitoring - 1.1 - Zabbix Agent has been created/modified. - Zabbix Agent has been deleted. - /usr/local/etc/rc.d/zabbix_agentd.sh restart - - Zabbix Agent - Setup Zabbix Agent specific settings -
Services
- /pkg_edit.php?xml=zabbix-agent.xml&id=0 -
- - zabbix_agentd - zabbix_agentd.sh - zabbix_agentd - Zabbix Agent host monitor daemon - - - - Settings - /pkg_edit.php?xml=zabbix-agent.xml&id=0 - - - - - - Server - server - List of comma delimited IP addresses (or hostnames) of ZABBIX servers - 127.0.0.1 - input - 60 - true - - - Server Port - serverport - Server port for sending active check (generally 10051) - 10051 - input - 60 - true - - - Hostname - hostname - Unique hostname. Required for active checks and must match hostname as configured on the Zabbix server (case sensitive). - localhost - input - 60 - true - - - Listen IP - listenip - 0.0.0.0 - input - 60 - true - Listen IP for connections from the server (generally 0.0.0.0 for all interfaces) - - - Listen Port - listenport - 10050 - input - 60 - true - Listen port for connections from the server (generally 10050) - - - Refresh Active Checks - refreshactchecks - 120 - input - 60 - false - The agent will refresh list of active checks once per 120 (default) seconds. - - - Timeout - timeout - 3 - input - 60 - true - Timeout (default 3). Do not spend more that Timeout seconds on getting requested value (1-255). The agent does not kill timeouted User Parameters processes! - - - Disable active checks - disableactive - checkbox - The agent will work only in passive mode listening for server. (generally net set) - - - Disable passive checks - disablepassive - checkbox - The agent will not listen on any TCP port. Only active checks will be processed. (generally not set) - - - User Parameters - userparams - base64 - - textarea - 5 - 50 - false - User-defined parameter to monitor. There can be several user-defined parameters. Value has form, example: UserParameter=users,who|wc -l <br><a href="https://www.zabbix.com/documentation/1.8/manual/tutorials/extending_agent" target="_new">See zabbix documentation for more information<a> - - - - "zabbix_agentd.sh", - "start" => "{$start}", - "restart" => "$stop\n" . "sleep 5\n" . "{$start}", - "stop" => "$stop" - ) - ); - - conf_mount_ro(); - ]]> - - - - - - - - - - - - - - -
-- cgit v1.2.3 From 5fc35a245a2db54453cdb269bb4d89191af9b0b6 Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sat, 24 Oct 2015 11:46:18 +0200 Subject: Remove broken zabbix 1.x packages Unusable (Bug #3779) and dead. --- config/zabbix-proxy/zabbix-proxy.xml | 250 ----------------------------------- 1 file changed, 250 deletions(-) delete mode 100644 config/zabbix-proxy/zabbix-proxy.xml diff --git a/config/zabbix-proxy/zabbix-proxy.xml b/config/zabbix-proxy/zabbix-proxy.xml deleted file mode 100644 index 19930b49..00000000 --- a/config/zabbix-proxy/zabbix-proxy.xml +++ /dev/null @@ -1,250 +0,0 @@ - - - zabbixproxy - Services: Zabbix Proxy - Monitoring - 1.1 - Zabbix Proxy has been created/modified. - Zabbix Proxy has been deleted. - /usr/local/etc/rc.d/zabbix_proxy.sh restart - - Zabbix Proxy - Setup Zabbix Proxy specific settings -
Services
- /pkg_edit.php?xml=zabbix-proxy.xml&id=0 -
- - zabbix-proxy - zabbix-proxy.sh - zabbix_proxy - Zabbix proxy collection daemon - - - - Settings - /pkg_edit.php?xml=zabbix-proxy.xml&id=0 - - - - - - Server - server - List of comma delimited IP addresses (or hostnames) of ZABBIX servers - 127.0.0.1 - input - 100 - true - - - Server Port - serverport - Server port (generally 10051) - 10051 - input - 6 - true - - - Hostname - hostname - Unique, case-sensitive proxy name. Make sure the proxy name is known to the server - localhost - input - 100 - true - - - Active Mode - activemode - Check to run Zabbix proxy in active mode (default) - on - checkbox - true - - - Config Frequency - configfrequency - How often the proxy retrieves configuration data from the Zabbix server in seconds. Ignored if the proxy runs in passive mode. - 3600 - input - 10 - true - - - - "zabbix_proxy.sh", - "start" => "{$start}", - "restart" => "$stop\n" . "sleep 5\n" . "{$start}", - "stop" => "$stop" - ) - ); - - conf_mount_ro(); - ]]> - - - - - - - - - - '2097152', - 'kern.ipc.shmmax' => '2147483648', - 'kern.ipc.semmsl' => '250' - ); - $sysctls = array(); - if (file_exists("/etc/sysctl.conf")) { - $sc = file_get_contents("/etc/sysctl.conf"); - $sc = explode("\n", $sc); - foreach ($sc as $num => $line) { - list($sysctl, $val) = explode("=", $line, 2); - if (array_key_exists($sysctl, $want_sysctls) || empty($sysctl)) - unset($sc[$num]); - } - } - foreach ($want_sysctls as $ws => $wv) { - $sc[] = "{$ws}={$wv}"; - exec("/sbin/sysctl {$ws}={$wv}"); - } - file_put_contents("/etc/sysctl.conf", implode("\n", $sc) . "\n"); - - $want_tunables = array( - 'kern.ipc.semopm' => '100', - 'kern.ipc.semmni' => '128', - 'kern.ipc.semmns' => '32000', - 'kern.ipc.shmmni' => '4096' - ); - $tunables = array(); - if (file_exists("/boot/loader.conf")) { - $lt = file_get_contents("/boot/loader.conf"); - $lt = explode("\n", $lt); - foreach ($lt as $num => $line) { - list($tunable, $val) = explode("=", $line, 2); - if (array_key_exists($tunable, $want_tunables) || empty($tunable)) - unset($lt[$num]); - } - } - foreach ($want_tunables as $wt => $wv) { - $lt[] = "{$wt}={$wv}"; - } - file_put_contents("/boot/loader.conf", implode("\n", $lt) . "\n"); - chmod("/var/log/zabbix", 0755); - chmod("/var/run/zabbix", 0755); - conf_mount_ro(); - - ]]> - - - - -
\ No newline at end of file -- cgit v1.2.3 From 3438e0756d50f94c98a4eaef2c1d50d6761ca15c Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sat, 24 Oct 2015 11:48:31 +0200 Subject: Remove broken zabbix 1.x packages Unusable (Bug #3779) and dead. --- pkg_config.8.xml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/pkg_config.8.xml b/pkg_config.8.xml index b0999759..e10734cb 100644 --- a/pkg_config.8.xml +++ b/pkg_config.8.xml @@ -1311,46 +1311,6 @@ https://packages.pfsense.org/packages/config/squidGuard/squidguard.xml squidguard.xml - - Zabbix Agent - Monitoring agent. - Services - https://packages.pfsense.org/packages/config/zabbix-agent/zabbix-agent.xml - 1.8.10,2 pkg v1.1 - FINAL - 1.2.3 - zabbix-agent.xml - remco.verhoef@redfive.biz - /usr/ports/net-mgmt/zabbix-agent - - zabbix-agent - net-mgmt/zabbix-agent - - ca_root_nss_UNSET_FORCE=ETCSYMLINK;zabbix22_SET=LDAP SSH SQLITE;zabbix22_UNSET_FORCE=MYSQL - https://files.pfsense.org/packages/8/All/ - zabbix-agent-1.8.10,2.tbz - zabbix-agent-1.8.13-i386.pbi - - - Zabbix Proxy - Monitoring agent proxy. - Services - https://packages.pfsense.org/packages/config/zabbix-proxy/zabbix-proxy.xml - 1.8.8,2 pkg v1.1 - FINAL - 1.2.3 - zabbix-proxy.xml - cmb@pfsense.org - /usr/ports/net-mgmt/zabbix-proxy - - zabbix-proxy - net-mgmt/zabbix-proxy - - ca_root_nss_UNSET_FORCE=ETCSYMLINK;zabbix22_SET=LDAP SSH SQLITE;zabbix22_UNSET_FORCE=MYSQL - https://files.pfsense.org/packages/8/All/ - zabbix-proxy-1.8.8,2.tbz - zabbix-proxy-1.8.13-i386.pbi - OpenVPN Client Export Utility Allows a pre-configured OpenVPN Windows Client or Mac OS X's Viscosity configuration bundle to be exported directly from pfSense. -- cgit v1.2.3 From dfa974b57eb73a889c75367c50209c72a1b2031f Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sat, 24 Oct 2015 11:49:25 +0200 Subject: Remove broken zabbix 1.x packages Unusable (Bug #3779) and dead. --- pkg_config.8.xml.amd64 | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/pkg_config.8.xml.amd64 b/pkg_config.8.xml.amd64 index 06660716..ba250597 100644 --- a/pkg_config.8.xml.amd64 +++ b/pkg_config.8.xml.amd64 @@ -1298,46 +1298,6 @@ https://packages.pfsense.org/packages/config/squidGuard/squidguard.xml squidguard.xml - - Zabbix Agent - Monitoring agent. - Services - https://packages.pfsense.org/packages/config/zabbix-agent/zabbix-agent.xml - 1.8.10,2 pkg v1.1 - FINAL - 1.2.3 - zabbix-agent.xml - remco.verhoef@redfive.biz - /usr/ports/net-mgmt/zabbix-agent - - zabbix-agent - net-mgmt/zabbix-agent - - ca_root_nss_UNSET_FORCE=ETCSYMLINK;zabbix22_SET=LDAP SSH SQLITE;zabbix22_UNSET_FORCE=MYSQL - https://files.pfsense.org/packages/amd64/8/All/ - zabbix-agent-1.8.10,2.tbz - zabbix-agent-1.8.13-amd64.pbi - - - Zabbix Proxy - Monitoring agent proxy. - Services - https://packages.pfsense.org/packages/config/zabbix-proxy/zabbix-proxy.xml - 1.8.8,2 pkg v1.1 - FINAL - 1.2.3 - zabbix-proxy.xml - cmb@pfsense.org - /usr/ports/net-mgmt/zabbix-proxy - - zabbix-proxy - net-mgmt/zabbix-proxy - - ca_root_nss_UNSET_FORCE=ETCSYMLINK;zabbix22_SET=LDAP SSH SQLITE;zabbix22_UNSET_FORCE=MYSQL - https://files.pfsense.org/packages/amd64/8/All/ - zabbix-proxy-1.8.8,2.tbz - zabbix-proxy-1.8.13-amd64.pbi - OpenVPN Client Export Utility Allows a pre-configured OpenVPN Windows Client or Mac OSX's Viscosity configuration bundle to be exported directly from pfSense. -- cgit v1.2.3