From f2370b4278fa12f0459e01239a58822c9f60a603 Mon Sep 17 00:00:00 2001 From: Ted Cook Date: Wed, 13 Mar 2024 18:40:08 -0600 Subject: [PATCH] Remove debug statements --- molecule/common/verify.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/molecule/common/verify.yml b/molecule/common/verify.yml index 8f6eaff..fa3c8d4 100644 --- a/molecule/common/verify.yml +++ b/molecule/common/verify.yml @@ -63,21 +63,6 @@ _service: "{{ [_name] | map('extract', services) }}" when: ansible_os_family == 'Debian' - - debug: - var: postgresql_service - - - debug: - msg: "status: {{ _svc_status }}, state: {{ _svc_state }}" - vars: - _state: "{{ postgresql_service_state | default('running') }}" - _online: "{{ (ansible_os_family == 'RedHat') | ternary('enabled', 'active') }}" - _offline: "{{ (ansible_os_family == 'RedHat') | ternary('disabled', 'inactive') }}" - _status: "{{ (_state == 'running') | ternary(_online, _offline) }}" - _masked: "{{ postgresql_service_masked | default('false') | bool }}" - _svc_status: "{{ _masked | ternary('masked', _status) }}" - _stopped: "{{ (ansible_os_family == 'RedHat') | ternary('inactive', 'stopped') }}" - _svc_state: "{{ (_state == 'running') | ternary('running', _stopped) }}" - - name: Verify service state ansible.builtin.assert: that: