diff options
author | Ralph Bean <rbean@redhat.com> | 2017-02-17 15:32:57 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2017-02-17 15:32:57 +0000 |
commit | 58b0d2d3abea8b1e575f6bf1a591a77413c31d6f (patch) | |
tree | 0c84f44a50fe8aec1eef6c1f3f262a0ef7e4ce40 | |
parent | 87503b8ed96813c259eb5b31afef1fc0cbdc7027 (diff) | |
download | ansible-58b0d2d3abea8b1e575f6bf1a591a77413c31d6f.tar.gz ansible-58b0d2d3abea8b1e575f6bf1a591a77413c31d6f.tar.xz ansible-58b0d2d3abea8b1e575f6bf1a591a77413c31d6f.zip |
Restart apache when oidc scopes change.
-rw-r--r-- | roles/ipsilon/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/ipsilon/tasks/main.yml b/roles/ipsilon/tasks/main.yml index 651668076..1035f08b4 100644 --- a/roles/ipsilon/tasks/main.yml +++ b/roles/ipsilon/tasks/main.yml @@ -32,6 +32,8 @@ owner=root group=root mode=0644 with_items: - account-scopes + notify: + - restart apache tags: - ipsilon - ipsilon/oidc_scopes @@ -42,6 +44,8 @@ owner=root group=root mode=0644 with_items: - mbs + notify: + - restart apache when: env == 'staging' tags: - ipsilon |