adds run script, readme and fixes stdout
This commit is contained in:
parent
6ee13c1a6a
commit
196a27fde5
3 changed files with 29 additions and 1 deletions
24
ansible/README.md
Normal file
24
ansible/README.md
Normal file
|
@ -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.
|
||||
|
3
ansible/bin/run.sh
Normal file
3
ansible/bin/run.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
ansible-playbook -i hosts redbrick-ansible.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:
|
||||
|
|
Loading…
Reference in a new issue