Merge pull request #54959 from jslight90/gitlab-depenencies
gitlab: add openssh dependency to gitaly
This commit is contained in:
commit
65b26c6555
|
@ -497,7 +497,12 @@ in {
|
||||||
systemd.services.gitaly = {
|
systemd.services.gitaly = {
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
wantedBy = [ "multi-user.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 = {
|
serviceConfig = {
|
||||||
Type = "simple";
|
Type = "simple";
|
||||||
User = cfg.user;
|
User = cfg.user;
|
||||||
|
|
Loading…
Reference in New Issue