Finished file tests with selinux.

This commit is contained in:
Richard C Isaacson 2014-02-20 11:23:35 -05:00
parent 101f9a226b
commit f3922d02d1

View file

@ -17,13 +17,14 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- name: touch a file for testing
file: path={{output_dir}}/foo-se.txt state=file
file: path={{output_dir}}/foo-se.txt state=touch
register: file_se_result
- name: verify that the file was marked as changed
assert: { that: "file_result.changed == true" }
assert: { that: "file_se_result.changed == true" }
- name: assert touch a file for testing matches expected selinux context
assert: { that: "file_result.secontext == 'unconfined_u:object_r:admin_home_t:s0'" }
assert: { that: "file_se_result.secontext == 'unconfined_u:object_r:admin_home_t:s0'" }
- name: remove the file used for testing
file: path={{output_dir}}/foo-se.txt state=absent