summarylogtreecommitdiffstats
path: root/gogs.install
diff options
context:
space:
mode:
authorThomas Fanninger2015-11-30 17:18:33 +0100
committerThomas Fanninger2015-11-30 17:18:33 +0100
commitebd9c655a6122946f02473ba101f01ea3effb2b8 (patch)
treea47ce1cb2553cf63296ef5f561292be84eb70b3c /gogs.install
parent27095c852befadecb211c05b6395b85991d47377 (diff)
downloadaur-ebd9c655a6122946f02473ba101f01ea3effb2b8.tar.gz
correct bug with gogs user bash
Diffstat (limited to 'gogs.install')
-rw-r--r--gogs.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/gogs.install b/gogs.install
index 0402a43106df..ea3a8a227366 100644
--- a/gogs.install
+++ b/gogs.install
@@ -5,7 +5,7 @@ pre_install() {
if ! getent passwd gogs >/dev/null; then
useradd -m --system -c 'gogs daemon users' -g gogs -s /bin/false gogs
fi
- chsh gogs -s /usr/bin/bash
+ chsh gogs -s /bin/bash
}
post_install(){