From add930d679dca88cbf413be2c10a8248448f8b6e Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 7 Sep 2023 02:10:55 +0000 Subject: [PATCH] Update 'root/usr/libexec/apps/gitea/gitea.sh' --- root/usr/libexec/apps/gitea/gitea.sh | 92 +++++++++++++--------------- 1 file changed, 44 insertions(+), 48 deletions(-) diff --git a/root/usr/libexec/apps/gitea/gitea.sh b/root/usr/libexec/apps/gitea/gitea.sh index 3b3ff8d..5c5d6cc 100755 --- a/root/usr/libexec/apps/gitea/gitea.sh +++ b/root/usr/libexec/apps/gitea/gitea.sh @@ -4,53 +4,41 @@ ACTION=${1} shift 1 get_image() { - IMAGE_NAME="gitea/gitea:1.17.1" + IMAGE_NAME=$(uci get gitea.@gitea[0].image_name 2>/dev/null) } do_install_detail() { - local config=`uci get gitea.@gitea[0].config_path 2>/dev/null` - local port=`uci get gitea.@gitea[0].port 2>/dev/null` - local IMAGE_NAME=`uci get gitea.@gitea[0].image_name 2>/dev/null` - local username=`uci get gitea.@gitea[0].username 2>/dev/null` - local password=`uci get gitea.@gitea[0].password 2>/dev/null` - - #Generate the generic environment variables for the docker-compose - + local config=$(uci get gitea.@gitea[0].config_path 2>/dev/null) + local port=$(uci get gitea.@gitea[0].port 2>/dev/null) + local IMAGE_NAME=$(uci get gitea.@gitea[0].image_name 2>/dev/null) + GEN_PASS=$(< /dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c14; echo) GEN_PASS2=$(< /dev/urandom tr -dc A-Za-z0-9 2>/dev/null | head -c14; echo) - - # Get our local LAN IP Address + LAN_IP=$(uci get network.lan.ipaddr) - # Strip trailing network mask LAN_IP="${LAN_IP%/*}" - + if [ -z "$config" ]; then - echo "config path is empty!" - exit 1 + echo "config path is empty!" + exit 1 fi [ -z "$port" ] && port=3000 [ -z "$IMAGE_NAME" ] && IMAGE_NAME=gitea/gitea:1.17.1 - - # Create Docker Compose file with custom variables - - # Create Docker Compose file with custom variables -touch docker-compose.yml -cat > docker-compose.yml < /opt/docker2/compose/gitea-app/docker-compose.yml <