ansible/test/integration/targets/win_service/tasks/main.yml
2019-04-18 15:06:45 +10:00

57 lines
1.7 KiB
YAML

# test code for the win_service module
# (c) 2014, Chris Church <chris@ninemoreminutes.com>
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- name: create test directory
win_file:
path: '{{ test_win_service_dir }}'
state: directory
# This binary has been pre-compiled with the code in the files directory of this role
- name: download service executable
win_get_url:
url: '{{ test_win_service_binary_url }}'
dest: '{{ test_win_service_path }}'
- name: remove the dummy test services if it is left over from previous tests
win_service:
name: '{{ item }}'
force_dependent_services: True
state: absent
with_items:
- '{{ test_win_service_name }}'
- TestServiceParent2
- TestServiceDependency
- block:
- include_tasks: tests.yml
always:
- name: remove test services
win_service:
name: '{{ item }}'
force_dependent_services: True
state: absent
with_items:
- '{{ test_win_service_name }}'
- TestServiceParent2
- TestServiceDependency
- name: remove test directory
win_file:
path: '{{ test_win_service_dir }}'
state: absent