Files
awx/make-scripts-executable.sh

10 lines
424 B
Bash
Executable File

#!/usr/bin/env bash
# Make key scripts in awx-local-setup executable
set -euo pipefail
ROOT="$(cd "$(dirname "$0")" && pwd)"
chmod +x "$ROOT"/setup_awx_local.sh || true
chmod +x "$ROOT"/scripts/create_cred_and_ping.sh || true
chmod +x "$ROOT"/scripts/add_static_hosts.sh || true
chmod +x "$ROOT"/cleanup.sh || true
echo "Made scripts executable: setup_awx_local.sh, create_cred_and_ping.sh, add_static_hosts.sh, cleanup.sh"