From 196a27fde5ad6fda1aea38bc4202654cefee7cb3 Mon Sep 17 00:00:00 2001 From: James Hackett Date: Wed, 7 Dec 2022 23:36:58 +0000 Subject: [PATCH] adds run script, readme and fixes stdout --- ansible/README.md | 24 ++++++++++++++++++++++++ ansible/bin/run.sh | 3 +++ ansible/roles/apt/tasks/main.yml | 3 ++- 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 ansible/README.md create mode 100644 ansible/bin/run.sh diff --git a/ansible/README.md b/ansible/README.md new file mode 100644 index 0000000..827b539 --- /dev/null +++ b/ansible/README.md @@ -0,0 +1,24 @@ +# Redbrick Ansible Playbook + +To run various roles, make sure you edit the `redbrick-ansible.yml` playbook and comment out whatever roles you do not want to run. + +This playbook is supposed to used as a starting base, extend or modify it as you see fit. I would suggest you create a copy of it and add that file to the `.gitignore` file so that you're not constantly reverting your changes. + +## Running + +Below is an example of how to run this playbook: + +```bash +$ ansible-playbook -i hosts redbrick-ansible.yml +``` + +This command assumes `hosts` is your hosts file, you can copy the sample host file and modify the credentials in `group_vars` + +## Contributing + +Please add all roles into the `roles` directory, following the same directory structure. + +You should also add the role and a small description of what it does into `redbrick-ansible.yml`, this is to make it easier to run commands and modify the playbook at a glance. + +If you have any questions, please mail/ping `distro` in Redbrick. + diff --git a/ansible/bin/run.sh b/ansible/bin/run.sh new file mode 100644 index 0000000..f43980b --- /dev/null +++ b/ansible/bin/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +ansible-playbook -i hosts redbrick-ansible.yml diff --git a/ansible/roles/apt/tasks/main.yml b/ansible/roles/apt/tasks/main.yml index d1cbe0d..0433175 100644 --- a/ansible/roles/apt/tasks/main.yml +++ b/ansible/roles/apt/tasks/main.yml @@ -10,12 +10,13 @@ register: result - name: List installed and updated packages + become: true shell: cmd: 'grep -E "^$(date +%Y-%m-%d).+ (install|upgrade) " /var/log/dpkg.log | cut -d " " -f 3-5' register: result - name: Show Output - debug: msg= '{{ result.stdout_lines }}' + debug: msg="{{ result.stdout_lines }}" - name: install common tools ansible.builtin.apt: