From f54545b1ddd6fc13c02e1325ec21409219378045 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Wed, 10 Jun 2026 13:47:20 -0400 Subject: [PATCH] renamed bash script file to reflect its function--automation of playbook runs --- bootstrap.sh | 5 +++++ dry_run.sh | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100755 bootstrap.sh delete mode 100755 dry_run.sh diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..c4a95ad --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,5 @@ +#!/bin/bash +set -euo pipefail + +sudo ansible-playbook --ask-pass --ask-become-pass -i hosts.yml init@homeserver.yml +ansible-playbook --ask-become-pass -i hosts.test.yml administrate@homeserver.yml \ No newline at end of file diff --git a/dry_run.sh b/dry_run.sh deleted file mode 100755 index bc5d987..0000000 --- a/dry_run.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -ansible-playbook --ask-pass --ask-become-pass -i hosts.yml init@homeserver.yml --check \ No newline at end of file