ansible/test/integration/targets/win_service/tasks/main.yml
Jordan Borean 7a7a0cae94 win_service: added support for paused services (#27216)
* win_service: added support for paused services

* change pausable service for local computers

* more fixes for older hosts

* sigh

* skip pause tests for Server 2008 as it relies on the service
2017-08-01 18:48:14 +10:00

53 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: 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
- name: get details of the {{test_win_service_pause_name}} service
win_service:
name: '{{test_win_service_pause_name}}'
register: pause_service_details
- block:
- include_tasks: tests.yml
always:
- name: ensure the {{test_win_service_pause_name}} is set to stopped if it was stopped
win_service:
name: '{{test_win_service_pause_name}}'
state: stopped
force_dependent_services: True
when: pause_service_details.state == 'stopped'
- name: make sure all services are removed in the end
win_service:
name: '{{item}}'
force_dependent_services: True
state: absent
with_items:
- '{{test_win_service_name}}'
- TestServiceParent2
- TestServiceDependency