ansible/playbooks/manual/remote_delldrive.yml
Ricky Elrod 079b6cb422 at least make it SOMEWHAT prettier
Signed-off-by: Ricky Elrod <relrod@redhat.com>
2018-05-09 20:19:07 +00:00

21 lines
656 B
YAML

# Call with, for example: -e 'target=ibiblio04.fedoraproject.org mgmt=ibiblio04-mgmt.fedoraproject.org'
- name: Do a remote drive check
hosts: "{{target}}"
user: root
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
tasks:
- name: Copy script over to {{target}}
copy: src={{private}}/scripts/drivestatus.py dest=/root/drivestatus.py
- name: Run it for {{mgmt}}
shell: python /root/drivestatus.py {{mgmt}}
register: out
- name: Remove it
file: path=/root/drivestatus.py state=absent
- debug: var=out.stdout_lines