Commit f3922d02 by Richard C Isaacson

Finished file tests with selinux.

parent 101f9a22
......@@ -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
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment