fix gitea
This commit is contained in:
parent
590bb561ad
commit
38ded86d9f
|
@ -89,8 +89,6 @@ wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y gitea
|
apt-get install -y gitea
|
||||||
|
|
||||||
#Edit /etc/gitea/app.ini
|
|
||||||
|
|
||||||
systemctl enable --now gitea
|
systemctl enable --now gitea
|
||||||
|
|
||||||
#configuration with http://<ip>:3000
|
#configuration with http://<ip>:3000
|
||||||
|
|
|
@ -31,7 +31,7 @@ envinit() {
|
||||||
|
|
||||||
prebuild(){
|
prebuild(){
|
||||||
[ -e /tmp/git ] && rm -fr /tmp/git
|
[ -e /tmp/git ] && rm -fr /tmp/git
|
||||||
[ -e /tmp/element-web ] || mkdir /tmp/${APP}
|
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
|
||||||
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
||||||
cp -r /tmp/git/. /tmp/${APP}
|
cp -r /tmp/git/. /tmp/${APP}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ envinit() {
|
||||||
|
|
||||||
prebuild(){
|
prebuild(){
|
||||||
[ -e /tmp/git ] && rm -fr /tmp/git
|
[ -e /tmp/git ] && rm -fr /tmp/git
|
||||||
[ -e /tmp/element-web ] || mkdir /tmp/${APP}
|
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
|
||||||
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
||||||
cp -r /tmp/git/. /tmp/${APP}
|
cp -r /tmp/git/. /tmp/${APP}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=1.16.3
|
VERSION=1.16.3
|
||||||
RELEASE=2
|
RELEASE=5
|
||||||
|
|
||||||
[ -e ./lib/function.sh ] && source ./lib/function.sh
|
[ -e ./lib/function.sh ] && source ./lib/function.sh
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ envinit() {
|
||||||
|
|
||||||
prebuild(){
|
prebuild(){
|
||||||
[ -e /tmp/git ] && rm -fr /tmp/git
|
[ -e /tmp/git ] && rm -fr /tmp/git
|
||||||
[ -e /tmp/element-web ] || mkdir /tmp/${APP}
|
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
|
||||||
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
||||||
cp -r /tmp/git/. /tmp/${APP}
|
cp -r /tmp/git/. /tmp/${APP}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,5 +3,6 @@ Version: %VERSION%
|
||||||
Section: base
|
Section: base
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
Depends: git
|
||||||
Maintainer: Thomas Legay <thomas@syngate.fr>
|
Maintainer: Thomas Legay <thomas@syngate.fr>
|
||||||
Description: gitea
|
Description: gitea
|
||||||
|
|
|
@ -3,3 +3,4 @@
|
||||||
id gitea &> /dev/null || useradd gitea -r -s /bin/false -d /var/lib/gitea/
|
id gitea &> /dev/null || useradd gitea -r -s /bin/false -d /var/lib/gitea/
|
||||||
|
|
||||||
chown -R gitea:gitea /var/lib/gitea/
|
chown -R gitea:gitea /var/lib/gitea/
|
||||||
|
chown gitea:gitea /etc/gitea/app.ini
|
||||||
|
|
Loading…
Reference in New Issue