about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-09-25 12:58:44 +0000
committerGitHub <noreply@github.com>2017-09-25 12:58:44 +0000
commitffd6cbe3d157212437dd4f99e008c5abe7056525 (patch)
tree16fbd90393667aeb546946fafc89353f6926d6d7 /nixos
parente23973fa4ef54a2bae83ff2133c0218a54e5177f (diff)
parent00bc46b72271c26d4af8df98c653335d38a18b6d (diff)
downloadnixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar.gz
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar.bz2
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar.lz
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar.xz
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.tar.zst
nixlib-ffd6cbe3d157212437dd4f99e008c5abe7056525.zip
Merge pull request #28503 from phile314/fusion-inventory
Fusion inventory: Init at 2.3.18
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/monitoring/fusion-inventory.nix66
2 files changed, 67 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index ce6fea445c38..b3477fba8ae1 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -355,6 +355,7 @@
   ./services/monitoring/collectd.nix
   ./services/monitoring/das_watchdog.nix
   ./services/monitoring/dd-agent/dd-agent.nix
+  ./services/monitoring/fusion-inventory.nix
   ./services/monitoring/grafana.nix
   ./services/monitoring/graphite.nix
   ./services/monitoring/hdaps.nix
diff --git a/nixos/modules/services/monitoring/fusion-inventory.nix b/nixos/modules/services/monitoring/fusion-inventory.nix
new file mode 100644
index 000000000000..1c00f3c299e9
--- /dev/null
+++ b/nixos/modules/services/monitoring/fusion-inventory.nix
@@ -0,0 +1,66 @@
+# Fusion Inventory daemon.
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.fusionInventory;
+
+  configFile = pkgs.writeText "fusion_inventory.conf" ''
+    server = ${concatStringsSep ", " cfg.servers}
+
+    logger = stderr
+
+    ${cfg.extraConfig}
+  '';
+
+in {
+
+  ###### interface
+
+  options = {
+
+    services.fusionInventory = {
+
+      enable = mkEnableOption "Fusion Inventory Agent";
+
+      servers = mkOption {
+        type = types.listOf types.str;
+        description = ''
+          The urls of the OCS/GLPI servers to connect to.
+        '';
+      };
+
+      extraConfig = mkOption {
+        default = "";
+        type = types.lines;
+        description = ''
+          Configuration that is injected verbatim into the configuration file.
+        '';
+      };
+    };
+  };
+
+
+  ###### implementation
+
+  config = mkIf cfg.enable {
+
+    users.extraUsers = singleton {
+      name = "fusion-inventory";
+      description = "FusionInventory user";
+    };
+
+    systemd.services."fusion-inventory" = {
+      description = "Fusion Inventory Agent";
+      wantedBy = [ "multi-user.target" ];
+
+      environment = {
+        OPTIONS = "--no-category=software";
+      };
+      serviceConfig = {
+        ExecStart = "${pkgs.fusionInventory}/bin/fusioninventory-agent --conf-file=${configFile} --daemon --no-fork";
+      };
+    };
+  };
+}