about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-09-10 18:27:29 +0200
committerGitHub <noreply@github.com>2022-09-10 18:27:29 +0200
commit67db9b4ad1cc6fd8e7c09ee2ab67503967098274 (patch)
tree54c7cd257b31d2a6a20d1740a2987caebdcae061 /nixos
parentc45deeb2aa67019d216a3dd1baca4a5157bdf123 (diff)
parentad0108d803c9e74c08d70061301d8780e428abe5 (diff)
downloadnixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar.gz
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar.bz2
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar.lz
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar.xz
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.tar.zst
nixlib-67db9b4ad1cc6fd8e7c09ee2ab67503967098274.zip
Merge pull request #190695 from Mic92/gollum
nixos/gollum: add package option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/gollum.nix10
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/gollum.nix14
3 files changed, 24 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gollum.nix b/nixos/modules/services/misc/gollum.nix
index a4bed2da8a2f..ca6f42736a10 100644
--- a/nixos/modules/services/misc/gollum.nix
+++ b/nixos/modules/services/misc/gollum.nix
@@ -87,6 +87,14 @@ in
       description = lib.mdDoc "Specifies the path of the repository directory. If it does not exist, Gollum will create it on startup.";
     };
 
+    package = mkOption {
+      type = types.package;
+      default = pkgs.gollum;
+      defaultText = literalExpression "pkgs.gollum";
+      description = lib.mdDoc ''
+        The package used in the service
+      '';
+    };
   };
 
   config = mkIf cfg.enable {
@@ -120,7 +128,7 @@ in
         Group = config.users.groups.gollum.name;
         WorkingDirectory = cfg.stateDir;
         ExecStart = ''
-          ${pkgs.gollum}/bin/gollum \
+          ${cfg.package}/bin/gollum \
             --port ${toString cfg.port} \
             --host ${cfg.address} \
             --config ${pkgs.writeText "gollum-config.rb" cfg.extraConfig} \
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index f3cde7e23a16..230ad47f3bfa 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -189,6 +189,7 @@ in {
   gobgpd = handleTest ./gobgpd.nix {};
   gocd-agent = handleTest ./gocd-agent.nix {};
   gocd-server = handleTest ./gocd-server.nix {};
+  gollum = handleTest ./gollum.nix {};
   google-oslogin = handleTest ./google-oslogin {};
   gotify-server = handleTest ./gotify-server.nix {};
   grafana = handleTest ./grafana.nix {};
diff --git a/nixos/tests/gollum.nix b/nixos/tests/gollum.nix
new file mode 100644
index 000000000000..833db87f2f32
--- /dev/null
+++ b/nixos/tests/gollum.nix
@@ -0,0 +1,14 @@
+import ./make-test-python.nix ({ pkgs, ... }: {
+  name = "gollum";
+
+  nodes = {
+    webserver = { pkgs, lib, ... }: {
+      services.gollum.enable = true;
+    };
+  };
+
+  testScript = { nodes, ... }: ''
+    webserver.wait_for_unit("gollum")
+    webserver.wait_for_open_port(${toString nodes.webserver.config.services.gollum.port})
+  '';
+})