ansible: Install Ansible

The `ansible.yml` playbook and corresponding *ansible* role simply
install Ansible and related utilities, such as OpenSSH and GnuPG.
jenkins-master
Dustin 2018-04-08 12:04:30 -05:00
parent 54bc5570f1
commit ac4e9fc390
3 changed files with 9 additions and 0 deletions

3
ansible.yml Normal file
View File

@ -0,0 +1,3 @@
- hosts: ansible
roles:
- ansible

2
hosts
View File

@ -29,3 +29,5 @@ dch-gw
dch-gw
[jenkins-slave]
[ansible]

View File

@ -0,0 +1,4 @@
- name: ensure packages are installed
package:
name=ansible,gnupg,openssh-clients
state=present