summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/fusion-inventory.nix
diff options
context:
space:
mode:
authorPhilipp Hausmann <ph_git@314.ch>2017-08-10 13:13:35 +0200
committerPhilipp Hausmann <ph_git@314.ch>2017-09-25 10:39:11 +0200
commit6b788e36dff4cdcb31c2e9ed526797e8fd1f0799 (patch)
tree05b0d7e8e50dab4d05380b4a79e8082ecf760784 /nixos/modules/services/monitoring/fusion-inventory.nix
parentde3d26165f15219dfd007798b2c8085ba4795c30 (diff)
downloadnixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar.gz
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar.bz2
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar.lz
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar.xz
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.tar.zst
nixpkgs-6b788e36dff4cdcb31c2e9ed526797e8fd1f0799.zip
FusionInventory: Add NixOS module.
Diffstat (limited to 'nixos/modules/services/monitoring/fusion-inventory.nix')
-rw-r--r--nixos/modules/services/monitoring/fusion-inventory.nix71
1 files changed, 71 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/fusion-inventory.nix b/nixos/modules/services/monitoring/fusion-inventory.nix
new file mode 100644
index 00000000000..fdd27938ea7
--- /dev/null
+++ b/nixos/modules/services/monitoring/fusion-inventory.nix
@@ -0,0 +1,71 @@
+# 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 = mkOption {
+        default = false;
+        description = ''
+          Whether to run the Fusion Inventory agent on this machine.
+        '';
+      };
+
+      servers = mkOption {
+        type = types.listOf types.string;
+        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";
+      };
+    };
+  };
+}