Update playbooks

This commit is contained in:
Keannu Christian Bernasol 2024-10-29 01:36:24 +08:00
parent 46250f9a99
commit 2150c17f24
14 changed files with 315 additions and 9 deletions

View file

@ -0,0 +1,9 @@
#!/bin/bash
scripts_directory="/root/scripts/acme_scripts"
# Execute all .sh files in the directory
for script in "$scripts_directory"/*.sh; do
echo "--Executing $script--"
bash "$script"
done