add playbooks

This commit is contained in:
willtome
2022-02-11 08:26:04 -06:00
parent 858e7290ec
commit 99a6ff6dbf
10 changed files with 299 additions and 4 deletions

14
linux/run_script.yml Normal file
View File

@@ -0,0 +1,14 @@
---
- name: Run Shell Script
hosts: "{{ HOSTS }}"
become: yes
gather_facts: no
vars:
shell_script: undef
tasks:
- name: Run Shell Script
shell: "{{ shell_script }}"
- debug:
msg: You should really consider converting this script to a playbook!