diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-04-03 17:08:47 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-04-03 17:08:47 +0200 |
commit | 6dc215efd24c79c06c9d7f572f5c79218fdc2f18 (patch) | |
tree | 144996bfb73dfc84b6b5d18cf0c2cc20d275c57f /nms/ansible/roles/nmsfront/handlers | |
parent | ce5cabc9b3a7287751a269c20b477523ead350da (diff) |
NMS: Ansible now with restarts and htpasswd
This seems to do what we need with 0 extra config, except that you'd
obviously have to know the relevant vault passwords
Diffstat (limited to 'nms/ansible/roles/nmsfront/handlers')
-rw-r--r-- | nms/ansible/roles/nmsfront/handlers/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nms/ansible/roles/nmsfront/handlers/main.yml b/nms/ansible/roles/nmsfront/handlers/main.yml new file mode 100644 index 0000000..5cc3cb8 --- /dev/null +++ b/nms/ansible/roles/nmsfront/handlers/main.yml @@ -0,0 +1,5 @@ +- name: restart apache + service: name=apache2 state=restarted + +- name: restart varnish + service: name=varnish state=restarted |