Pārlūkot izejas kodu

correct bug with gogs user bash

Thomas Fanninger 10 gadi atpakaļ
vecāks
revīzija
5ad1925779
3 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 1 1
      .SRCINFO
  2. 1 1
      PKGBUILD
  3. 1 1
      gogs.install

+ 1 - 1
.SRCINFO

@@ -1,7 +1,7 @@
 pkgbase = gogs
 	pkgdesc = Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
 	pkgver = 0.7.22
-	pkgrel = 1
+	pkgrel = 2
 	epoch = 1
 	url = http://gogs.io/
 	install = gogs.install

+ 1 - 1
PKGBUILD

@@ -4,7 +4,7 @@
 pkgname=gogs
 _pkgname=${pkgname}
 pkgver=0.7.22
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language."
 arch=('i686' 'x86_64' 'armv6h' 'armv7h')

+ 1 - 1
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(){