mirror of https://github.com/tteck/Proxmox.git
small changes
This commit is contained in:
parent
a6d31d03cb
commit
e6985a15c2
|
@ -23,13 +23,13 @@ msg_ok "Installed Dependencies"
|
||||||
msg_info "Installing Gitea"
|
msg_info "Installing Gitea"
|
||||||
RELEASE=$(wget -q https://github.com/go-gitea/gitea/releases/latest -O - | grep "title>Release" | cut -d " " -f 4)
|
RELEASE=$(wget -q https://github.com/go-gitea/gitea/releases/latest -O - | grep "title>Release" | cut -d " " -f 4)
|
||||||
VERSION=${RELEASE#v}
|
VERSION=${RELEASE#v}
|
||||||
wget -q https://github.com/go-gitea/gitea/releases/download/$RELEASE/gitea-$VERSION-linux-amd64
|
$STD wget -q https://github.com/go-gitea/gitea/releases/download/$RELEASE/gitea-$VERSION-linux-amd64
|
||||||
mv gitea* /usr/local/bin/gitea
|
mv gitea* /usr/local/bin/gitea
|
||||||
chmod +x /usr/local/bin/gitea
|
chmod +x /usr/local/bin/gitea
|
||||||
msg_info "Installed Gitea"
|
msg_info "Installed Gitea"
|
||||||
|
|
||||||
msg_info "Creating Gitea user"
|
msg_info "Creating Gitea user"
|
||||||
adduser --system --group --disabled-password --home /etc/gitea gitea > /dev/null 2>&1
|
adduser --system --group --disabled-password --home /etc/gitea gitea > /dev/null
|
||||||
|
|
||||||
msg_info "Creating directory structure"
|
msg_info "Creating directory structure"
|
||||||
mkdir -p /var/lib/gitea/{custom,data,log}
|
mkdir -p /var/lib/gitea/{custom,data,log}
|
||||||
|
|
Loading…
Reference in New Issue