diff options
| author | Kevin Fenzi <kevin@scrye.com> | 2016-01-06 21:58:31 +0000 |
|---|---|---|
| committer | Kevin Fenzi <kevin@scrye.com> | 2016-01-06 21:58:31 +0000 |
| commit | f0c80375b54ac5aa24463f60893803e393a56f7d (patch) | |
| tree | f585b4d2de548370d995cda28b442657a25619cc /roles/ask | |
| parent | 5c0cca432b56ca34eeb9e87c3df92f52da87576b (diff) | |
| download | ansible-f0c80375b54ac5aa24463f60893803e393a56f7d.tar.gz ansible-f0c80375b54ac5aa24463f60893803e393a56f7d.tar.xz ansible-f0c80375b54ac5aa24463f60893803e393a56f7d.zip | |
Remove action: in all roles.
Diffstat (limited to 'roles/ask')
| -rw-r--r-- | roles/ask/tasks/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/ask/tasks/main.yml b/roles/ask/tasks/main.yml index 26440061d..0911c17b5 100644 --- a/roles/ask/tasks/main.yml +++ b/roles/ask/tasks/main.yml @@ -30,7 +30,7 @@ - python-openid - name: set sebooleans so ask can talk to the db - action: seboolean name=httpd_can_network_connect_db + seboolean: name=httpd_can_network_connect_db state=true persistent=true tags: @@ -38,7 +38,7 @@ - selinux - name: set sebooleans so ask can use the gluster mount - action: seboolean name=httpd_use_fusefs + seboolean: name=httpd_use_fusefs state=true persistent=true tags: @@ -46,7 +46,7 @@ - selinux - name: set sebooleans so ask can talk to the memcache - action: seboolean name=httpd_can_network_memcache + seboolean: name=httpd_can_network_memcache state=true persistent=true tags: @@ -54,7 +54,7 @@ - selinux - name: set sebooleans so ask can talk to fedmsg - action: seboolean name=allow_httpd_sys_script_anon_write + seboolean: name=allow_httpd_sys_script_anon_write state=true persistent=true tags: @@ -62,7 +62,7 @@ - selinux - name: set sebooleans so ask can talk to fedmsg - action: seboolean name=allow_ypbind + seboolean: name=allow_ypbind state=true persistent=true tags: |
