From 9f959ca3d428469e9af5e65c8823c6df4f93fda8 Mon Sep 17 00:00:00 2001 From: Jessica Mack Date: Thu, 26 Jan 2023 11:12:50 -0500 Subject: [PATCH] removed unneeded launch file and Dockerfile change Signed-off-by: Jessica Mack --- .../files/launch_awx_cache_clear.sh | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 tools/ansible/roles/dockerfile/files/launch_awx_cache_clear.sh diff --git a/tools/ansible/roles/dockerfile/files/launch_awx_cache_clear.sh b/tools/ansible/roles/dockerfile/files/launch_awx_cache_clear.sh deleted file mode 100644 index 8a1a3e87fd..0000000000 --- a/tools/ansible/roles/dockerfile/files/launch_awx_cache_clear.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash -if [ `id -u` -ge 500 ]; then - echo "awx:x:`id -u`:`id -g`:,,,:/var/lib/awx:/bin/bash" >> /tmp/passwd - cat /tmp/passwd > /etc/passwd - rm /tmp/passwd -fi - -if [ -n "${AWX_KUBE_DEVEL}" ]; then - pushd /awx_devel - make awx-link - popd - - export SDB_NOTIFY_HOST=$MY_POD_IP -fi - -set -e - -wait-for-migrations - -awx-manage provision_instance - -exec supervisord -c /etc/supervisord_task.conf \ No newline at end of file