awx-local-setup: harden scripts, add chmod helper, fix CI schedule

This commit is contained in:
alex-local
2025-09-12 11:33:11 +02:00
parent 22dbf2b78d
commit fb9756b147
6 changed files with 167 additions and 86 deletions

9
make-scripts-executable.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/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"