summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/xattr/tasks/setup.yml
diff options
context:
space:
mode:
authorbengerman13 <bengerman@gmail.com>2017-05-23 21:02:56 +0200
committerToshio Kuratomi <a.badger@gmail.com>2017-05-23 21:02:56 +0200
commit25aac6151f8848b701c5b952c1749cbe20ad134b (patch)
tree8d7930f1332d0ce45dadcbc1205bdf286161d78e /test/integration/targets/xattr/tasks/setup.yml
parentRead directory_mode as 'raw' type (diff)
downloadansible-25aac6151f8848b701c5b952c1749cbe20ad134b.tar.xz
ansible-25aac6151f8848b701c5b952c1749cbe20ad134b.zip
add integration tests for xattr module (#24947)
* add integration tests for xattr module * fix whitespace
Diffstat (limited to '')
-rw-r--r--test/integration/targets/xattr/tasks/setup.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/targets/xattr/tasks/setup.yml b/test/integration/targets/xattr/tasks/setup.yml
new file mode 100644
index 0000000000..4a0150e113
--- /dev/null
+++ b/test/integration/targets/xattr/tasks/setup.yml
@@ -0,0 +1,10 @@
+- name: Install
+ package:
+ name: attr
+ state: installed
+ become: true
+
+- name: Create file
+ file:
+ path: "{{ test_file }}"
+ state: touch \ No newline at end of file