awx-local-setup: harden scripts, add chmod helper, fix CI schedule
This commit is contained in:
9
make-scripts-executable.sh
Executable file
9
make-scripts-executable.sh
Executable 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"
|
||||
Reference in New Issue
Block a user