diff --git a/Docker/rootfs/etc/services.d/netdaemon/run b/Docker/rootfs/etc/services.d/netdaemon/run index 4506d1149..b2f00a79c 100755 --- a/Docker/rootfs/etc/services.d/netdaemon/run +++ b/Docker/rootfs/etc/services.d/netdaemon/run @@ -6,12 +6,12 @@ if [ ! -d "/data" ]; then fi if [[ -z "${NetDaemon__ApplicationAssembly}" ]]; then - echo -e "\\033[32mStarting NetDaemon V4 runtime ...\\033[0m" >&2 + echo -e "\\033[32mStarting NetDaemon V5 runtime ...\\033[0m" >&2 cd "${daemondir}" || exit 1 exec dotnet NetDaemon.Host.Default.dll else if [[ "${NetDaemon__ApplicationAssembly}" == *".csproj" ]]; then - echo -e "\\033[31mcsproj deployments are not supported in v3, use compiled option instead!\\033[0m" >&2 + echo -e "\\033[31mcsproj deployments are not supported in v5, use compiled option instead!\\033[0m" >&2 exit 1 fi @@ -32,7 +32,7 @@ else exit 1 fi - echo -e "\\033[32mStarting NetDaemon V4 pre-built runtime using assembly ${NetDaemon__ApplicationAssembly}...\\033[0m" >&2 + echo -e "\\033[32mStarting NetDaemon V5 pre-built runtime using assembly ${NetDaemon__ApplicationAssembly}...\\033[0m" >&2 cd "$(dirname "${NetDaemon__ApplicationAssembly}")" || echo -e "\\033[31mCould not change directory to run project\\033[0m" >&2 if [[ "${PWD}" != "$(dirname "${NetDaemon__ApplicationAssembly}")" ]]; then diff --git a/Docker/rootfs/etc/services.d/netdaemon_addon/run b/Docker/rootfs/etc/services.d/netdaemon_addon/run index c7e1fce32..9dcf214ab 100644 --- a/Docker/rootfs/etc/services.d/netdaemon_addon/run +++ b/Docker/rootfs/etc/services.d/netdaemon_addon/run @@ -58,13 +58,13 @@ if ! bashio::fs.file_exists "/data/options.json"; then fi if ! bashio::config.has_value "app_assembly"; then - bashio::log.info "Starting NetDaemon V4 Runtime ..." + bashio::log.info "Starting NetDaemon V5 Runtime ..." cd "${daemondir}" || bashio::exit.nok "${daemondir} does not exist" exec dotnet NetDaemon.Host.Default.dll else # We have provided an application assembly setting if [[ "${NetDaemon__ApplicationAssembly}" == *".csproj" ]]; then - bashio::exit.nok "csproj deployments are not supported in v3, use compiled option instead!" + bashio::exit.nok "csproj deployments are not supported in v5, use compiled option instead!" fi if [[ "${NetDaemon__ApplicationAssembly}" != *".dll" ]]; then @@ -82,7 +82,7 @@ else bashio::exit.nok "The assembly ${NetDaemon__ApplicationAssembly} cannot be found. Please check the settings." fi - bashio::log.info "Starting NetDaemon V4 pre-built Runtime using assembly ${NetDaemon__ApplicationAssembly}..." + bashio::log.info "Starting NetDaemon V5 pre-built Runtime using assembly ${NetDaemon__ApplicationAssembly}..." cd "$(dirname "${NetDaemon__ApplicationAssembly}")" || bashio::exit.nok "Could not change directory to run project" exec dotnet "$(basename "${NetDaemon__ApplicationAssembly}")" diff --git a/Docker/run-nd.sh b/Docker/run-nd.sh index 50434bd9a..70b397f80 100644 --- a/Docker/run-nd.sh +++ b/Docker/run-nd.sh @@ -8,12 +8,12 @@ if [ ! -d "/data" ]; then fi if [[ -z "${NetDaemon__ApplicationAssembly}" ]]; then - echo -e "\\033[32mStarting NetDaemon V3 runtime ...\\033[0m" >&2 + echo -e "\\033[32mStarting NetDaemon V5 runtime ...\\033[0m" >&2 cd "${daemondir}" || exit 1 exec dotnet NetDaemon.Host.Default.dll else if [[ "${NetDaemon__ApplicationAssembly}" == *".csproj" ]]; then - echo -e "\\033[31mcsproj deployments are not supported in v3, use compiled option instead!\\033[0m" >&2 + echo -e "\\033[31mcsproj deployments are not supported in v5, use compiled option instead!\\033[0m" >&2 exit 1 fi @@ -34,7 +34,7 @@ else exit 1 fi - echo -e "\\033[32mStarting NetDaemon V3 pre-built runtime using assembly ${NetDaemon__ApplicationAssembly}...\\033[0m" >&2 + echo -e "\\033[32mStarting NetDaemon V5 pre-built runtime using assembly ${NetDaemon__ApplicationAssembly}...\\033[0m" >&2 cd "$(dirname "${NetDaemon__ApplicationAssembly}")" || echo -e "\\033[31mCould not change directory to run project\\033[0m" >&2 if [[ "${PWD}" != "$(dirname "${NetDaemon__ApplicationAssembly}")" ]]; then