browbeat/ansible/browbeat/install-at.yml
akrzos c8e44e1afc Pike Adjustment playbooks and collectd config modifications.
* Include version changes for various adjustment playbooks

Change-Id: Ie797e080cecfa4caa9b261984e43efa0c02df23e
2017-11-29 15:43:58 -05:00

31 lines
606 B
YAML

---
#
# Playbook to install and enable atd
#
# Versions tested: Newton, Ocata, Pike
#
# This allows you to syncohize a script/command across multiple machines.
# Example: Synconhized restarting of ceilometer polling across computes
# and controllers.
#
- hosts: overcloud
remote_user: "{{ host_remote_user }}"
gather_facts: false
vars_files:
- ../install/group_vars/all.yml
roles:
- repo
tasks:
- name: Install at
yum:
name: at
become: true
- name: Start atd
service:
name: atd
enabled: true
state: restarted
become: true