diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-05-08 14:12:41 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-05-08 14:12:44 +0300 |
commit | 49f86db14bf21bc3fd18abed6cd42ef08c7789f8 (patch) | |
tree | 2dc7f2206caa094286526d12e8cc3bb047963170 | |
parent | c0904ce43e599828a407e22a49b9194a4fdff079 (diff) | |
download | nixsap-49f86db14bf21bc3fd18abed6cd42ef08c7789f8.tar.gz |
Jenkins: define SHELL
For the Jenkins user it's usually `nologin`, so we have
to override it.
-rw-r--r-- | modules/apps/jenkins/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/apps/jenkins/default.nix b/modules/apps/jenkins/default.nix index 4fbaf1b..93331b2 100644 --- a/modules/apps/jenkins/default.nix +++ b/modules/apps/jenkins/default.nix @@ -46,6 +46,7 @@ let set -euo pipefail umask 0027 export HOME='${cfg.home}' + export SHELL='${pkgs.bash}/bin/bash' cd '${cfg.home}' |