Drop the ec2_proxy role, we don't need it anymore.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2022-02-08 17:09:19 -08:00
parent 958b914ea0
commit f8a320c69c
3 changed files with 0 additions and 18 deletions

View file

@ -23,8 +23,6 @@
- ipa/client
- rkhunter
- nagios_client
- { role: ec2_proxy,
when: "inventory_hostname in groups['cloud_aws']" }
- collectd/base
- sudo
- rsyncd

View file

@ -1 +0,0 @@
For things that only need to happen on ec2 proxies like mounting drives

View file

@ -1,15 +0,0 @@
---
- name: Create partition for /srv
parted: device=/dev/nvme1n1 number=1 state=present
tags:
- ec2_proxy
- name: Make it ext3
filesystem: fstype=ext3 dev=/dev/nvme1n1p1
tags:
- ec2_proxy
- name: mount /srv
mount: name=/srv src=/dev/nvme1n1p1 fstype=ext3 state=mounted
tags:
- ec2_proxy