Compare commits

...

10 Commits

Author SHA1 Message Date
Miguel Muniz fee5819332
Merge pull request #3 from Rogue-King/gitea
Gitea
2024-07-25 12:15:05 -07:00
Miguel Muniz 6beed2695a
Merge branch 'tteck:main' into main 2024-07-25 12:04:59 -07:00
Rogue-King 643299ccba cleaning up debugging/redirects 2024-07-25 12:01:51 -07:00
Rogue-King 65b0964ff3 more debugging 2024-07-25 11:40:53 -07:00
Rogue-King fddf4e0aa8 more debugging statements, note: redirected both repo and branch 2024-07-25 11:35:21 -07:00
Rogue-King c1b130b5c5 Debugging 2024-07-25 11:30:25 -07:00
Miguel Muniz cdc9d7b7a6
Merge branch 'tteck:main' into gitea 2024-07-25 11:26:03 -07:00
Rogue-King 667ac4af83 reformated install process and put them all under "installing Gitea" 2024-07-25 11:25:20 -07:00
tteckster b73557c14f
Update ersatztv-install.sh
fixes https://github.com/tteck/Proxmox/issues/3422
2024-07-25 13:50:00 -04:00
Rogue-King 6f0235aa71 removed version variable and modified how release is obtained. added curl to dependencies and capitalized G 2024-07-25 09:53:12 -07:00
3 changed files with 26 additions and 31 deletions

View File

@ -9,18 +9,18 @@ source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build
function header_info { function header_info {
clear clear
cat <<"EOF" cat <<"EOF"
_ __ ______ _ __
______(_)/ /____ ____ _ / ____/(_)/ /____ ____ _
/ __ / // __/ _ \/ __ / / / __// // __/ _ \/ __ /
/ /_/ / // /_/ __/ /_/ / / /_/ // // /_/ __/ /_/ /
\__, /_/ \__/\___/\__,_/ \____//_/ \__/\___/\__,_/
/____/
EOF EOF
} }
header_info header_info
echo -e "Loading..." echo -e "Loading..."
APP="gitea" APP="Gitea"
var_disk="8" var_disk="8"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
@ -57,10 +57,9 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -f /usr/local/bin/gitea ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -f /usr/local/bin/gitea ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
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 | sed 's/^v//')
VERSION=${RELEASE#v} msg_info "Updating $APP to ${RELEASE}"
msg_info "Updating gitea to ${RELEASE}" wget -q https://github.com/go-gitea/gitea/releases/download/v$RELEASE/gitea-$RELEASE-linux-amd64
wget -q https://github.com/go-gitea/gitea/releases/download/$RELEASE/gitea-$VERSION-linux-amd64
systemctl stop gitea systemctl stop gitea
rm -rf /usr/local/bin/gitea rm -rf /usr/local/bin/gitea
mv gitea* /usr/local/bin/gitea mv gitea* /usr/local/bin/gitea

View File

@ -15,21 +15,21 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies (Patience)" msg_info "Installing Dependencies"
$STD apt-get install -y --no-install-recommends \ $STD apt-get install -y curl
ffmpeg \ $STD apt-get install -y sudo
build-essential \ $STD apt-get install -y mc
unzip \
pkg-config \
curl \
sudo \
git \
make \
mc
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing FFmpeg (Patience)"
echo "deb http://deb.debian.org/debian/ sid main" >/etc/apt/sources.list.d/sid.list
$STD apt update
DEBIAN_FRONTEND=noninteractive $STD apt install -t sid ffmpeg -y
rm /etc/apt/sources.list.d/sid.list
$STD apt update
msg_ok "Installed FFmpeg"
msg_info "Installing ErsatzTV " msg_info "Installing ErsatzTV"
RELEASE=$(curl -s https://api.github.com/repos/ErsatzTV/ErsatzTV/releases | grep -oP '"tag_name": "\K[^"]+' | head -n 1) RELEASE=$(curl -s https://api.github.com/repos/ErsatzTV/ErsatzTV/releases | grep -oP '"tag_name": "\K[^"]+' | head -n 1)
wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-x64.tar.gz" | tar -xz -C /opt wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-x64.tar.gz" | tar -xz -C /opt
mv "/opt/ErsatzTV-${RELEASE}-linux-x64" /opt/ErsatzTV mv "/opt/ErsatzTV-${RELEASE}-linux-x64" /opt/ErsatzTV

View File

@ -16,27 +16,23 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt-get install -y git $STD apt-get install -y git
$STD apt-get install -y curl
$STD apt-get install -y sudo $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
msg_ok "Installed Dependencies" 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 | sed 's/^v//')
VERSION=${RELEASE#v} wget -q https://github.com/go-gitea/gitea/releases/download/v$RELEASE/gitea-$RELEASE-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 "Creating Gitea user"
adduser --system --group --disabled-password --home /etc/gitea gitea > /dev/null adduser --system --group --disabled-password --home /etc/gitea gitea > /dev/null
msg_info "Creating directory structure"
mkdir -p /var/lib/gitea/{custom,data,log} mkdir -p /var/lib/gitea/{custom,data,log}
chown -R gitea:gitea /var/lib/gitea/ chown -R gitea:gitea /var/lib/gitea/
chmod -R 750 /var/lib/gitea/ chmod -R 750 /var/lib/gitea/
chown root:gitea /etc/gitea chown root:gitea /etc/gitea
chmod 770 /etc/gitea chmod 770 /etc/gitea
msg_info "Installed Gitea"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/gitea.service cat <<EOF >/etc/systemd/system/gitea.service