From 9279a8af410125d19cacccdc7223dbefc7773df5 Mon Sep 17 00:00:00 2001 From: Jason A Everling Date: Thu, 28 Mar 2024 14:04:58 -0500 Subject: [PATCH] remove 20.04, only the unifi image needed, unifi 8.x now supports mongo 6.x+ --- .github/workflows/build.yml | 6 ------ src/usr/sbin/ociectl | 3 ++- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index adb10d5..f727e5c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,12 +21,6 @@ jobs: DOCKER_TOKEN: ${{secrets.DOCKER_TOKEN}} run: | docker login -u $DOCKER_USER -p $DOCKER_TOKEN - - name: Build 20.04 - run: | - docker build . --pull --build-arg OS_VERSION=20.04 --tag bshp/ocie:20.04 --no-cache - - name: Push 20.04 - run: | - docker push bshp/ocie:20.04 - name: Build 22.04 run: | docker build . --pull --build-arg OS_VERSION=${{env.STABLE_CHANNEL}} --tag bshp/ocie:latest --no-cache diff --git a/src/usr/sbin/ociectl b/src/usr/sbin/ociectl index 457c64a..28938d1 100644 --- a/src/usr/sbin/ociectl +++ b/src/usr/sbin/ociectl @@ -114,6 +114,7 @@ function ocie_reload() function ocie_start() { + echo "Ocie: Initializing container"; ocie_certs; ocie_keys; ocie_config; @@ -122,7 +123,7 @@ function ocie_start() check_volumes; fi; echo "Ocie: Initialization complete"; - echo "Ocie: Application starting, please wait..."; + echo "Ocie: Starting application, please wait..."; if [[ "${WATCHER_ENABLED}" == "1" ]];then local pid=$(app_start); if [[ ! -z "$pid" ]];then