diff --git a/ibm_concert/cert_renewal/inventories/host_vars/zos_host.yml b/ibm_concert/cert_renewal/inventories/host_vars/zos_host.yml index f354dc320..e4ef41b05 100644 --- a/ibm_concert/cert_renewal/inventories/host_vars/zos_host.yml +++ b/ibm_concert/cert_renewal/inventories/host_vars/zos_host.yml @@ -26,5 +26,5 @@ ansible_python_interpreter: "{{ PYZ }}/bin/python3" # varibles for templates JOB_CARD: |- - //HZSPRINT JOB , - // MSGCLASS=H,MSGLEVEL=(1,1),CLASS=A + //ANSIBLE JOB , + // MSGCLASS=msg_class,MSGLEVEL=(1,1),CLASS=job_class diff --git a/ibm_concert/cert_renewal/renew_cert.yml b/ibm_concert/cert_renewal/renew_cert.yml index 0767fc4f6..d25fecdd4 100644 --- a/ibm_concert/cert_renewal/renew_cert.yml +++ b/ibm_concert/cert_renewal/renew_cert.yml @@ -25,7 +25,6 @@ cert_type: 'USER' # defautl to USER cert_label: '' sign_with: 'CERTAUTH' # blank or CERTAUTH - # sign_label: 'IBM CA' keyring_name: '' expiry_date: '2025-12-31' cert_detail: {} @@ -33,8 +32,6 @@ cert_found: false today: '' - uss_file_path: '{{ playbook_tmp_dir.path }}' - tasks: - ansible.builtin.debug: var: sn_short_desc @@ -64,12 +61,6 @@ 'cert_type': 'CERTAUTH' when: arg_cert_type is search('CERTAUTH') - - name: Create temporary directory for playbook use - ansible.builtin.tempfile: - state: directory - path: /tmp - register: playbook_tmp_dir - - block: - name: Run Health Checker ibm.ibm_zos_core.zos_operator: @@ -295,10 +286,6 @@ delegate_to: localhost always: - - name: Delete the temporary directory - ansible.builtin.file: - path: "{{ playbook_tmp_dir.path }}" - state: absent - name: Delete the CSV on z/OS ansible.builtin.file: path: /tmp/{{ concert_csv_file }} diff --git a/ibm_concert/cert_renewal/send_cert_data.yml b/ibm_concert/cert_renewal/send_cert_data.yml index 383bd28a6..459d02d5f 100644 --- a/ibm_concert/cert_renewal/send_cert_data.yml +++ b/ibm_concert/cert_renewal/send_cert_data.yml @@ -6,7 +6,6 @@ gather_facts: false environment: "{{ environment_vars }}" vars: - # IBM Concert variables concert_hostname: '' concert_instance_id: '' @@ -26,15 +25,8 @@ sysout_lines: [] cert_found: false - uss_file_path: '{{ playbook_tmp_dir.path }}' tasks: - - name: Create temporary directory to store bank files - ansible.builtin.tempfile: - state: directory - path: /tmp - register: playbook_tmp_dir - - block: - name: Run Health Checker ibm.ibm_zos_core.zos_operator: @@ -175,10 +167,6 @@ delegate_to: localhost always: - - name: Delete the temporary directory - ansible.builtin.file: - path: "{{ playbook_tmp_dir.path }}" - state: absent - name: Delete the CSV on z/os ansible.builtin.file: path: /tmp/{{ concert_csv_file }}