mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
24efe9ee9a
* Normalize bools in tests. * Fix typo.
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# -----------------------------------------------------------
|
|
|
|
- name: "[{{ item }}] Given a started service with RunAtLoad set to true..."
|
|
launchd:
|
|
name: "{{ launchd_service_name }}"
|
|
state: started
|
|
enabled: true
|
|
become: true
|
|
register: test_1_launchd_start_result
|
|
|
|
- name: "[{{ item }}] Validate that service was started"
|
|
assert:
|
|
that:
|
|
- test_1_launchd_start_result is success
|
|
- test_1_launchd_start_result is changed
|
|
- test_1_launchd_start_result.status.previous_pid == '-'
|
|
- test_1_launchd_start_result.status.previous_state == 'unloaded'
|
|
- test_1_launchd_start_result.status.current_state == 'started'
|
|
- test_1_launchd_start_result.status.current_pid != '-'
|
|
- test_1_launchd_start_result.status.status_code == '0'
|
|
|
|
- name: "[{{ item }}] Validate that RunAtLoad is set to true"
|
|
replace:
|
|
path: "{{ launchd_plist_location }}"
|
|
regexp: |
|
|
\s+<key>RunAtLoad</key>
|
|
\s+<true/>
|
|
replace: found_run_at_load
|
|
check_mode: true
|
|
register: contents_would_have
|
|
failed_when: not contents_would_have is changed
|