🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-24 18:24:14 -04:00
parent 21db828dbf
commit f145a6bc95
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -12,8 +12,8 @@
# @@Description : script to start wttr # @@Description : script to start wttr
# @@Changelog : New script # @@Changelog : New script
# @@TODO : Better documentation # @@TODO : Better documentation
# @@Other : # @@Other :
# @@Resource : # @@Resource :
# @@Terminal App : no # @@Terminal App : no
# @@sudo/root : no # @@sudo/root : no
# @@Template : other/start-service # @@Template : other/start-service
@ -48,6 +48,11 @@ __exec_command() {
[ "$exitCode" = 0 ] || exitCode=10 [ "$exitCode" = 0 ] || exitCode=10
return ${exitCode:-$?} return ${exitCode:-$?}
} }
__start_servers() {
python3 /app/bin/srv.py &
python3 /app/bin/proxy.py &
python3 /app/bin/geo-proxy.py
}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set variables # Set variables
DISPLAY="${DISPLAY:-}" DISPLAY="${DISPLAY:-}"
@ -77,7 +82,7 @@ CONTAINER_IP_ADDRESS="$(ip a 2>/dev/null | grep 'inet' | grep -v '127.0.0.1' | a
# Overwrite variables # Overwrite variables
#SERVICE_PORT="" #SERVICE_PORT=""
SERVICE_NAME="wttr" SERVICE_NAME="wttr"
SERVICE_COMMAND="$SERVICE_NAME" SERVICE_COMMAND="__start_servers"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Show start message # Show start message