Compare commits

...

7 Commits

Author SHA1 Message Date
tteckster 594dc7e19c
Update linkwarden-install.sh
tweak
2024-04-09 20:27:12 -04:00
tteckster f77d5f01fb
Update ombi.sh
Remove `.tar.gz`
2024-04-09 20:21:39 -04:00
tteckster ba68b641de
Update ombi-install.sh
tweak
2024-04-09 20:18:26 -04:00
tteckster 0e02de596f
Update ombi-install.sh
revert
2024-04-09 19:49:55 -04:00
tteckster 38bca8fe17
Update ombi-install.sh
tweak
2024-04-09 19:43:59 -04:00
tteckster 98ee62bca0
Update ombi.sh
Add update path
2024-04-09 19:36:46 -04:00
tteckster c52eec1a8e
Update ombi-install.sh
tweak
2024-04-09 19:35:36 -04:00
3 changed files with 26 additions and 4 deletions

View File

@ -55,7 +55,26 @@ function default_settings() {
function update_script() {
header_info
if [[ ! -d /opt/ombi ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_error "There is currently no update path available."
RELEASE=$(curl -sL https://api.github.com/repos/Ombi-app/Ombi/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
msg_info "Stopping ${APP}"
systemctl stop ombi
msg_ok "Stopped ${APP}"
msg_info "Updating ${APP} to ${RELEASE}"
wget -q https://github.com/Ombi-app/Ombi/releases/download/${RELEASE}/linux-x64.tar.gz
tar -xzf linux-x64.tar.gz -C /opt/ombi
rm -rf linux-x64.tar.gz
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated ${APP} to ${RELEASE}"
msg_info "Starting ${APP}"
systemctl start ombi
msg_ok "Started ${APP}"
msg_ok "Updated Successfully"
else
msg_ok "No update required. ${APP} ia already at ${RELEASE}."
fi
exit
}

View File

@ -70,6 +70,8 @@ if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
fi
msg_info "Installing Linkwarden (Patience)"
RELEASE=$(curl -s https://api.github.com/repos/linkwarden/linkwarden/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
$STD yarn
$STD npx playwright install-deps
IP=$(hostname -I | awk '{print $1}')

View File

@ -20,11 +20,12 @@ $STD apt-get install -y mc
msg_ok "Installed Dependencies"
msg_info "Installing Ombi"
LATEST=$(curl -sL https://api.github.com/repos/Ombi-app/Ombi/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
# wget -q https://github.com/Ombi-app/Ombi/releases/download/${LATEST}/linux-x64.tar.gz
wget -q https://github.com/Ombi-app/Ombi/releases/download/v4.43.2/linux-x64.tar.gz
RELEASE=$(curl -sL https://api.github.com/repos/Ombi-app/Ombi/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
wget -q https://github.com/Ombi-app/Ombi/releases/download/${RELEASE}/linux-x64.tar.gz
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
mkdir -p /opt/ombi
tar -xzf linux-x64.tar.gz -C /opt/ombi
rm -rf linux-x64.tar.gz
msg_ok "Installed Ombi"
msg_info "Creating Service"