diff --git a/rootfs/back/services.d/acars_oxide/run b/rootfs/back/services.d/acars_oxide/run deleted file mode 100755 index abab722..0000000 --- a/rootfs/back/services.d/acars_oxide/run +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/with-contenv bash -# shellcheck shell=bash - -AO_COMMAND=() - -if [[ ${AO_VERBOSITY,,} =~ debug || $AO_VERBOSITY -eq 1 ]]; then - AO_COMMAND+=("-l") -elif [[ ${AO_VERBOSITY,,} =~ trace || $AO_VERBOSITY -ge 2 ]]; then - AO_COMMAND+=("-l -l") -fi - -echo "Starting acars-oxide with command: /opt/acars-oxide ${AO_COMMAND[*]}" - -/opt/acars-oxide "${AO_COMMAND[@]}"