Skip to content

Commit

Permalink
Merge pull request #54959 from jslight90/gitlab-depenencies
Browse files Browse the repository at this point in the history
gitlab: add openssh dependency to gitaly
  • Loading branch information
fpletz committed Feb 3, 2019
2 parents 1d2b504 + 059e5e0 commit 65b26c6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nixos/modules/services/misc/gitlab.nix
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,12 @@ in {
systemd.services.gitaly = {
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ gitAndTools.git cfg.packages.gitaly.rubyEnv cfg.packages.gitaly.rubyEnv.wrappedRuby ];
path = with pkgs; [
openssh
gitAndTools.git
cfg.packages.gitaly.rubyEnv
cfg.packages.gitaly.rubyEnv.wrappedRuby
];
serviceConfig = {
Type = "simple";
User = cfg.user;
Expand Down

0 comments on commit 65b26c6

Please sign in to comment.