Files
opengist/rootfs/root/docker/setup/05-custom.sh
T

60 lines
2.4 KiB
Bash
Raw Normal View History

2025-09-16 23:50:20 -04:00
#!/usr/bin/env bash
2025-11-29 08:22:47 -05:00
# shellcheck shell=bash
# - - - - - - - - - - - - - - - - - - - - - - - - -
2026-06-12 05:39:45 -04:00
##@Version : 202606120507-git
2025-09-16 23:50:20 -04:00
# @@Author : CasjaysDev
# @@Contact : CasjaysDev <docker-admin@casjaysdev.pro>
2026-06-12 05:39:45 -04:00
# @@License : WTFPL
# @@Copyright : Copyright 2026 CasjaysDev
# @@Created : Fri Jun 12 05:07:20 AM EDT 2026
2025-09-16 23:50:20 -04:00
# @@File : 05-custom.sh
# @@Description : script to run custom
2025-11-29 08:22:47 -05:00
# @@Changelog : newScript
# @@TODO : Refactor code
# @@Other : N/A
# @@Resource : N/A
# @@Terminal App : yes
# @@sudo/root : yes
# @@Template : templates/dockerfiles/init_scripts/05-custom.sh
# - - - - - - - - - - - - - - - - - - - - - - - - -
# shellcheck disable=SC1001,SC1003,SC2001,SC2003,SC2016,SC2031,SC2090,SC2115,SC2120,SC2155,SC2199,SC2229,SC2317,SC2329
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 23:50:20 -04:00
# Set bash options
2026-06-12 05:39:45 -04:00
set -eo pipefail
2025-09-16 23:50:20 -04:00
[ "$DEBUGGER" = "on" ] && echo "Enabling debugging" && set -x$DEBUGGER_OPTIONS
2025-11-29 08:22:47 -05:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 23:50:20 -04:00
# Set env variables
exitCode=0
2025-11-29 08:22:47 -05:00
TMP_DIR="/tmp/opengist"
TMP_BIN="$TMP_DIR/opengist"
TMP_FILE="/tmp/opengist.tar.gz"
2025-09-16 23:50:20 -04:00
BIN_PATH="/usr/local/bin/opengist"
2025-11-29 08:22:47 -05:00
ARCH="$(uname -m | tr '[:upper]' '[:lower]')"
2025-09-16 23:50:20 -04:00
case "$ARCH" in x86_64) ARCH="amd64" ;; aarch64) ARCH="arm64" ;; *) echo "$ARCH is not supported by this script" >&2 && exit 1 ;; esac
API_URL="$(curl -q -LSsf https://api.github.com/repos/thomiceli/opengist/releases/latest | jq -r '.assets[] | select(.name|match("linux.*tar.gz")) | .browser_download_url' | grep "$ARCH.tar.gz" || false)"
2025-11-29 08:22:47 -05:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Predefined actions
2025-09-16 23:50:20 -04:00
if [ -n "$API_URL" ]; then
2025-11-29 08:22:47 -05:00
echo "Dowloading from $API_URL"
curl -q -LSsf "$API_URL" -o "$TMP_FILE" && tar xzf "$TMP_FILE" -C "/tmp"
if [ -f "$TMP_DIR/opengist" ]; then
[ -d "/etc/opengist" ] || mkdir -p "/etc/opengist"
2025-11-29 08:26:08 -05:00
mv -f "$TMP_BIN" "$BIN_PATH" && chmod -Rf 755 "$BIN_PATH"
2025-11-29 08:22:47 -05:00
rm -Rf "$TMP_FILE" "$TMP_DIR"
else
exitCode=1
fi
2025-09-16 23:50:20 -04:00
fi
2025-11-29 08:22:47 -05:00
[ -x "$BIN_PATH" ] && echo "opengist installed to: $BIN_PATH" || exitCode=5
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 23:50:20 -04:00
# Set the exit code
2026-06-12 05:39:45 -04:00
exitCode=$?
2025-11-29 08:22:47 -05:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 23:50:20 -04:00
exit $exitCode
2025-11-29 08:22:47 -05:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
# ex: ts=2 sw=2 et filetype=sh
# - - - - - - - - - - - - - - - - - - - - - - - - -