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