summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_updates/tasks/main.yml
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:32 +0000
committerAnsible Core Team <info@ansible.com>2020-03-09 09:40:32 +0000
commita73c1da43a113ab268679faaf67bc59882d570d8 (patch)
treece681f8bb3c0b303034a46e97907504d5cfe5d0d /test/integration/targets/win_updates/tasks/main.yml
parentca86205e7dc386f0a9d7a709fd2f096f4523e758 (diff)
downloadansible-a73c1da43a113ab268679faaf67bc59882d570d8.tar.gz
Migrated to ansible.windows
Diffstat (limited to 'test/integration/targets/win_updates/tasks/main.yml')
-rw-r--r--test/integration/targets/win_updates/tasks/main.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/integration/targets/win_updates/tasks/main.yml b/test/integration/targets/win_updates/tasks/main.yml
deleted file mode 100644
index 182090e98a..0000000000
--- a/test/integration/targets/win_updates/tasks/main.yml
+++ /dev/null
@@ -1,26 +0,0 @@
----
-- name: ensure test folder exists
- win_file:
- path: '{{win_updates_dir}}'
- state: directory
-
-- name: ensure WUA service is running
- win_service:
- name: wuauserv
- state: started
- start_mode: manual
-
-- block:
- - include_tasks: tests.yml
-
- always:
- - name: ensure test folder is deleted
- win_file:
- path: '{{win_updates_dir}}'
- state: absent
-
- - name: ensure WUA service is running
- win_service:
- name: wuauserv
- state: started
- start_mode: manual