mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #107064 from aanderse/nixos/zabbixWeb
nixos/zabbixWeb: include DOUBLE_IEEE754 directive
This commit is contained in:
commit
a08ed097c9
1 changed files with 15 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
let
|
let
|
||||||
|
|
||||||
inherit (lib) mkDefault mkEnableOption mkForce mkIf mkMerge mkOption types;
|
inherit (lib) mkDefault mkEnableOption mkForce mkIf mkMerge mkOption types;
|
||||||
inherit (lib) literalExample mapAttrs optionalString;
|
inherit (lib) literalExample mapAttrs optionalString versionAtLeast;
|
||||||
|
|
||||||
cfg = config.services.zabbixWeb;
|
cfg = config.services.zabbixWeb;
|
||||||
fpm = config.services.phpfpm.pools.zabbix;
|
fpm = config.services.phpfpm.pools.zabbix;
|
||||||
|
@ -28,6 +28,8 @@ let
|
||||||
$ZBX_SERVER_PORT = '${toString cfg.server.port}';
|
$ZBX_SERVER_PORT = '${toString cfg.server.port}';
|
||||||
$ZBX_SERVER_NAME = ''';
|
$ZBX_SERVER_NAME = ''';
|
||||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||||
|
|
||||||
|
${cfg.extraConfig}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in
|
in
|
||||||
|
@ -143,6 +145,14 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.lines;
|
||||||
|
default = "";
|
||||||
|
description = ''
|
||||||
|
Additional configuration to be copied verbatim into <filename>zabbix.conf.php</filename>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -150,6 +160,10 @@ in
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.zabbixWeb.extraConfig = optionalString ((versionAtLeast config.system.stateVersion "20.09") && (versionAtLeast cfg.package.version "5.0.0")) ''
|
||||||
|
$DB['DOUBLE_IEEE754'] = 'true';
|
||||||
|
'';
|
||||||
|
|
||||||
systemd.tmpfiles.rules = [
|
systemd.tmpfiles.rules = [
|
||||||
"d '${stateDir}' 0750 ${user} ${group} - -"
|
"d '${stateDir}' 0750 ${user} ${group} - -"
|
||||||
"d '${stateDir}/session' 0750 ${user} ${config.services.httpd.group} - -"
|
"d '${stateDir}/session' 0750 ${user} ${config.services.httpd.group} - -"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue