mirror of
https://github.com/casjaysdevdocker/aria2
synced 2025-01-18 12:34:31 -05:00
🗃️ modified: bin/entrypoint-aria2.sh 🗃️
This commit is contained in:
parent
16aedec0c2
commit
cc22fffc3b
@ -1,12 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
##@Version : 202207111253-git
|
##@Version : 202207112232-git
|
||||||
# @Author : Jason Hempstead
|
# @Author : Jason Hempstead
|
||||||
# @Contact : jason@casjaysdev.com
|
# @Contact : jason@casjaysdev.com
|
||||||
# @License : LICENSE.md
|
# @License : LICENSE.md
|
||||||
# @ReadME : entrypoint-aria2.sh --help
|
# @ReadME : entrypoint-aria2.sh --help
|
||||||
# @Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
|
# @Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
|
||||||
# @Created : Monday, Jul 11, 2022 12:53 EDT
|
# @Created : Monday, Jul 11, 2022 22:32 EDT
|
||||||
# @File : entrypoint-aria2.sh
|
# @File : entrypoint-aria2.sh
|
||||||
# @Description :
|
# @Description :
|
||||||
# @TODO :
|
# @TODO :
|
||||||
@ -15,7 +15,7 @@
|
|||||||
# @sudo/root : no
|
# @sudo/root : no
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
APPNAME="$(basename "$0" 2>/dev/null)"
|
APPNAME="$(basename "$0" 2>/dev/null)"
|
||||||
VERSION="202207111253-git"
|
VERSION="202207112232-git"
|
||||||
HOME="${USER_HOME:-$HOME}"
|
HOME="${USER_HOME:-$HOME}"
|
||||||
USER="${SUDO_USER:-$USER}"
|
USER="${SUDO_USER:-$USER}"
|
||||||
RUN_USER="${SUDO_USER:-$USER}"
|
RUN_USER="${SUDO_USER:-$USER}"
|
||||||
@ -23,46 +23,75 @@ SRC_DIR="${BASH_SOURCE%/*}"
|
|||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Set bash options
|
# Set bash options
|
||||||
if [[ "$1" == "--debug" ]]; then shift 1 && set -xo pipefail && export SCRIPT_OPTS="--debug" && export _DEBUG="on"; fi
|
if [[ "$1" == "--debug" ]]; then shift 1 && set -xo pipefail && export SCRIPT_OPTS="--debug" && export _DEBUG="on"; fi
|
||||||
trap 'exit $?' HUP INT QUIT TERM EXIT
|
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set functions
|
||||||
|
__exec_bash() {
|
||||||
|
local cmd="${*:-/bin/bash}"
|
||||||
|
local exitCode=0
|
||||||
|
echo "Executing command: $cmd"
|
||||||
|
$cmd || exitCode=10
|
||||||
|
return ${exitCode:-$?}
|
||||||
|
}
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
__exec_bash() { [ -n "$1" ] && exec /bin/bash -c "${@:-bash}" || exec /bin/bash || exit 10; }
|
|
||||||
__find() { ls -A "$*" 2>/dev/null; }
|
__find() { ls -A "$*" 2>/dev/null; }
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Define default variables
|
||||||
|
TZ="${TZ:-America/New_York}"
|
||||||
|
HOSTNAME="${HOSTNAME:-casjaysdev-bin}"
|
||||||
|
BIN_DIR="${BIN_DIR:-/usr/local/bin}"
|
||||||
DATA_DIR="${DATA_DIR:-$(__find /data/ 2>/dev/null | grep '^' || false)}"
|
DATA_DIR="${DATA_DIR:-$(__find /data/ 2>/dev/null | grep '^' || false)}"
|
||||||
CONFIG_DIR="${CONFIG_DIR:-$(__find /config/ 2>/dev/null | grep '^' || false)}"
|
CONFIG_DIR="${CONFIG_DIR:-$(__find /config/ 2>/dev/null | grep '^' || false)}"
|
||||||
export TZ="${TZ:-America/New_York}"
|
CONFIG_COPY="${CONFIG_COPY:-false}"
|
||||||
export HOSTNAME="${HOSTNAME:-casjaysdev-bin}"
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Additional variables
|
||||||
ARIA2RPCPORT="${ARIA2RPCPORT:-6800}"
|
ARIA2RPCPORT="${ARIA2RPCPORT:-6800}"
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Export variables
|
||||||
|
export TZ HOSTNAME
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# import variables from file
|
||||||
|
[[ -f "/root/env.sh" ]] && . "/root/env.sh"
|
||||||
|
[[ -f "/config/.env.sh" ]] && . "/config/.env.sh"
|
||||||
|
[[ -f "/root/env.sh" ]] && [[ ! -f "/config/.env.sh" ]] && cp -Rf "/root/env.sh" "/config/.env.sh"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set timezone
|
||||||
[[ -n "${TZ}" ]] && echo "${TZ}" >/etc/timezone
|
[[ -n "${TZ}" ]] && echo "${TZ}" >/etc/timezone
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
||||||
[[ -f "/usr/share/zoneinfo/${TZ}" ]] && ln -sf "/usr/share/zoneinfo/${TZ}" "/etc/localtime"
|
[[ -f "/usr/share/zoneinfo/${TZ}" ]] && ln -sf "/usr/share/zoneinfo/${TZ}" "/etc/localtime"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set hostname
|
||||||
if [[ -n "${HOSTNAME}" ]]; then
|
if [[ -n "${HOSTNAME}" ]]; then
|
||||||
echo "${HOSTNAME}" >/etc/hostname
|
echo "${HOSTNAME}" >/etc/hostname
|
||||||
echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
|
echo "127.0.0.1 ${HOSTNAME} localhost ${HOSTNAME}.local" >/etc/hosts
|
||||||
fi
|
fi
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
[[ -d "/config/" ]] && rm -Rf "/config/.gitkeep" || { [[ -n "$CONFIG_DIR" ]] && mkdir -p "/config/"; }
|
# Delete any gitkeep files
|
||||||
[[ -d "/data/" ]] && rm -Rf "/data/.gitkeep" || { [[ -n "$DATA_DIR" ]] && mkdir -p "/data/"; }
|
[[ -n "${CONFIG_DIR}" ]] && { [[ -d "${CONFIG_DIR}" ]] && rm -Rf "${CONFIG_DIR}/.gitkeep" || mkdir -p "/config/"; }
|
||||||
[[ -d "/bin/" ]] && rm -Rf "/bin/.gitkeep" || { [[ -n "$BIN_DIR" ]] && mkdir -p "/bin/"; }
|
[[ -n "${DATA_DIR}" ]] && { [[ -d "${DATA_DIR}" ]] && rm -Rf "${DATA_DIR}/.gitkeep" || mkdir -p "/data/"; }
|
||||||
|
[[ -n "${BIN_DIR}" ]] && { [[ -d "${BIN_DIR}" ]] && rm -Rf "${BIN_DIR}/.gitkeep" || mkdir -p "/bin/"; }
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [[ -n "$CONFIG_DIR" ]]; then
|
# Copy config files to /etc
|
||||||
for config in $CONFIG_DIR; do
|
if [[ -n "${CONFIG_DIR}" ]] && [[ "${CONFIG_COPY}" = "true" ]]; then
|
||||||
|
for config in ${CONFIG_DIR}; do
|
||||||
if [[ -d "/config/$config" ]]; then
|
if [[ -d "/config/$config" ]]; then
|
||||||
|
[[ -d "/etc/$config" ]] || mkdir -p "/etc/$config"
|
||||||
cp -Rf "/config/$config/." "/etc/$config/"
|
cp -Rf "/config/$config/." "/etc/$config/"
|
||||||
elif [[ -f "/config/$config" ]]; then
|
elif [[ -f "/config/$config" ]]; then
|
||||||
cp -Rf "/config/$config" "/etc/$config"
|
cp -Rf "/config/$config" "/etc/$config"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
[[ -f "/etc/.env.sh" ]] && rm -Rf "/etc/.env.sh"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Additional commands
|
||||||
if [ -f "/aria2/config/ariang.js" ]; then
|
if [ -f "/aria2/config/ariang.js" ]; then
|
||||||
ln -sf "/aria2/config/ariang.js" "/usr/local/www/ariang/js/aria-ng-f1dd57abb9.min.js"
|
ln -sf "/aria2/config/ariang.js" "/usr/local/www/ariang/js/aria-ng-f1dd57abb9.min.js"
|
||||||
else
|
else
|
||||||
cp -Rf "/etc/ariang.js" "/aria2/config/ariang.js"
|
cp -Rf "/etc/ariang.js" "/aria2/config/ariang.js"
|
||||||
ln -sf "/aria2/config/ariang.js" "/usr/local/www/ariang/js/aria-ng-f1dd57abb9.min.js"
|
ln -sf "/aria2/config/ariang.js" "/usr/local/www/ariang/js/aria-ng-f1dd57abb9.min.js"
|
||||||
fi
|
fi
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# allow Changing of port [unsupported]
|
# allow Changing of port [unsupported]
|
||||||
if [[ -n "$ARIA2RPCPORT" ]] && [[ "$ARIA2RPCPORT" != "6800" ]]; then
|
if [[ -n "$ARIA2RPCPORT" ]] && [[ "$ARIA2RPCPORT" != "6800" ]]; then
|
||||||
echo "Changing rpc request port to $ARIA2RPCPORT"
|
echo "Changing rpc request port to $ARIA2RPCPORT"
|
||||||
@ -84,34 +113,43 @@ fi
|
|||||||
[ -f "/aria2/config/aria2.session" ] || touch "/aria2/config/aria2.session"
|
[ -f "/aria2/config/aria2.session" ] || touch "/aria2/config/aria2.session"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--help)
|
--help) # Help message
|
||||||
echo 'Docker container for '$APPNAME''
|
echo 'Docker container for '$APPNAME''
|
||||||
echo "Usage: $APPNAME [healthcheck, bash, command]"
|
echo "Usage: $APPNAME [healthcheck, bash, command]"
|
||||||
|
echo "Failed command will have exit code 10"
|
||||||
echo
|
echo
|
||||||
exitCode=$?
|
exitCode=$?
|
||||||
;;
|
;;
|
||||||
healthcheck)
|
|
||||||
|
healthcheck) # Docker healthcheck
|
||||||
if curl -q -LSsf -o /dev/null -s -w "200" "http://localhost:$ARIA2RPCPORT"; then
|
if curl -q -LSsf -o /dev/null -s -w "200" "http://localhost:$ARIA2RPCPORT"; then
|
||||||
echo "OK"
|
echo "$(uname -s) $(uname -m) is running"
|
||||||
exit 0
|
exit 0
|
||||||
else
|
else
|
||||||
echo "FAIL"
|
echo "FAIL"
|
||||||
exit 10
|
exit 10
|
||||||
fi
|
fi
|
||||||
;;
|
|
||||||
sh | bash | shell | */bin/sh | */bin/bash)
|
|
||||||
shift 1
|
|
||||||
__exec_bash "$@"
|
|
||||||
exitCode=$?
|
exitCode=$?
|
||||||
;;
|
;;
|
||||||
*)
|
|
||||||
echo starting server on $ARIA2RPCPORT
|
|
||||||
[ -f "/etc/nginx/nginx.conf" ] && nginx -c /etc/nginx/nginx.conf &
|
|
||||||
[ -f "/etc/aria2.conf" ] && exec aria2c --conf-path="/etc/aria2.conf" || exit 10
|
|
||||||
|
|
||||||
|
*/bin/sh | */bin/bash | bash | shell | sh) # Launch shell
|
||||||
|
shift 1
|
||||||
|
__exec_bash "${@:-/bin/bash}"
|
||||||
|
exitCode=$?
|
||||||
|
;;
|
||||||
|
|
||||||
|
*) # Execute primary command
|
||||||
|
[ -f "/etc/nginx/nginx.conf" ] && nginx -c /etc/nginx/nginx.conf &
|
||||||
|
if [[ $# -eq 0 ]]; then
|
||||||
|
[ -f "/etc/aria2.conf" ] &&
|
||||||
|
__exec_bash aria2c --conf-path="/etc/aria2.conf" || exit 10
|
||||||
|
else
|
||||||
|
__exec_bash "/bin/bash"
|
||||||
|
fi
|
||||||
|
exitCode=$?
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# end of entrypoint
|
||||||
exit ${exitCode:-$?}
|
exit ${exitCode:-$?}
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
#end
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user