diff options
author | Drunkard Zhang <gongfan193@gmail.com> | 2015-05-04 16:46:16 +0800 |
---|---|---|
committer | Drunkard Zhang <gongfan193@gmail.com> | 2015-05-04 16:46:16 +0800 |
commit | ef351f4cf4c2648ba6e5a71dc6d5086b4e45358d (patch) | |
tree | e9d53ae5fc59062f4b8ff47f3b1d077017941845 /lib/support | |
parent | 4c5adb702caef0aebe0d10416521e24e68fa0801 (diff) | |
download | gitlab-ce-ef351f4cf4c2648ba6e5a71dc6d5086b4e45358d.tar.gz |
Improve comments for shell_path
Diffstat (limited to 'lib/support')
-rwxr-xr-x | lib/support/init.d/gitlab.default.example | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/support/init.d/gitlab.default.example b/lib/support/init.d/gitlab.default.example index 4c5752766fa..cf7f4198cbf 100755 --- a/lib/support/init.d/gitlab.default.example +++ b/lib/support/init.d/gitlab.default.example @@ -30,8 +30,7 @@ web_server_pid_path="$pid_path/unicorn.pid" # The default is "$pid_path/sidekiq.pid" sidekiq_pid_path="$pid_path/sidekiq.pid" -# shell_path defines the path of shell for "$app_user" in case you disabled -# shell of "$app_user" by commands like `usermod -s /sbin/nologin $app_user" -# for security decision. +# shell_path defines the path of shell for "$app_user" in case you are using +# shell other than "bash" # The default is "/bin/bash" shell_path="/bin/bash" |