lol

Merge pull request #139357 from arezvov/zabbix_ipmi_support

zabbix: add IPMI support

authored by

Aaron Andersen and committed by
GitHub
cdfe909d 5c4181fa

+5 -2
+5 -2
pkgs/servers/monitoring/zabbix/server.nix
··· 6 , sshSupport ? true, libssh2 7 , mysqlSupport ? false, libmysqlclient 8 , postgresqlSupport ? false, postgresql 9 }: 10 11 # ensure exactly one primary database type is selected ··· 41 ++ optional snmpSupport net-snmp 42 ++ optional sshSupport libssh2 43 ++ optional mysqlSupport libmysqlclient 44 - ++ optional postgresqlSupport postgresql; 45 46 configureFlags = [ 47 "--enable-server" ··· 59 ++ optional snmpSupport "--with-net-snmp" 60 ++ optional sshSupport "--with-ssh2=${libssh2.dev}" 61 ++ optional mysqlSupport "--with-mysql" 62 - ++ optional postgresqlSupport "--with-postgresql"; 63 64 prePatch = '' 65 find database -name data.sql -exec sed -i 's|/usr/bin/||g' {} +
··· 6 , sshSupport ? true, libssh2 7 , mysqlSupport ? false, libmysqlclient 8 , postgresqlSupport ? false, postgresql 9 + , ipmiSupport ? false, openipmi 10 }: 11 12 # ensure exactly one primary database type is selected ··· 42 ++ optional snmpSupport net-snmp 43 ++ optional sshSupport libssh2 44 ++ optional mysqlSupport libmysqlclient 45 + ++ optional postgresqlSupport postgresql 46 + ++ optional ipmiSupport openipmi; 47 48 configureFlags = [ 49 "--enable-server" ··· 61 ++ optional snmpSupport "--with-net-snmp" 62 ++ optional sshSupport "--with-ssh2=${libssh2.dev}" 63 ++ optional mysqlSupport "--with-mysql" 64 + ++ optional postgresqlSupport "--with-postgresql" 65 + ++ optional ipmiSupport "--with-openipmi=${openipmi.dev}"; 66 67 prePatch = '' 68 find database -name data.sql -exec sed -i 's|/usr/bin/||g' {} +