browbeat/ansible/install/roles/graphite/handlers/main.yml
akrzos c30e8b950c Expose the carbon port (2003) when installing Carbon/Graphite and docs
* Expose carbon_cache_port to the config file and via the firewall
* Small cleanup job around the Graphite/Grafana playbook for consistency
* Docs for building a monitor host

Change-Id: I9e15eac3ce749c341ebf464f165f73c0a87212e5
2017-06-05 09:19:35 -04:00

19 lines
262 B
YAML

---
#
# Carbon and Graphite Handlers
#
- name: restart apache
service:
name: httpd
state: restarted
enabled: true
become: true
- name: restart carbon-cache
service:
name: carbon-cache
state: restarted
enabled: true
become: true