From a865c66f7fd0bf5f9ff4e95be5f88406952eb060 Mon Sep 17 00:00:00 2001 From: rhmk Date: Wed, 11 Sep 2024 12:16:59 +0200 Subject: [PATCH] removed interactive version on request from @seanfreeman --- playbooks/sap_hana_preconfigure.yml | 126 ---------------------------- 1 file changed, 126 deletions(-) delete mode 100644 playbooks/sap_hana_preconfigure.yml diff --git a/playbooks/sap_hana_preconfigure.yml b/playbooks/sap_hana_preconfigure.yml deleted file mode 100644 index 159acf89..00000000 --- a/playbooks/sap_hana_preconfigure.yml +++ /dev/null @@ -1,126 +0,0 @@ ---- -## -# Call this playbook interactively with -# ansible-playbook community.sap_install.sap_hana_preconfigure -# -# or alternatively unattended with -# ansible-playbook community.sap_install.sap_hana_preconfigure -e @myvars.yml -# -# The file myvars.yaml needs to contain the following variables -# -# please read README.md in playbooks folder for details -# -- name: Playbook Usage - hosts: localhost - gather_facts: false - tasks: - - name: Playbook Usage # noqa trailing-spaces - ansible.builtin.debug: - msg: |+ - ***************************************************************************** - * sap_hana_preconfigure * - * * - * This playbook is used to prepare an SAP HANA system. * - * The minimum viable parameters to successfully prepare your system for an * - * SAP HANA installation will be asked. * - * Useful defaults will be set, so that it is save to just press enter * - * * - * If you want to run these steps unattended, please use the playbook * - * sap_hana_preconfigure_exec.yml instead with a properly prepared variable * - * file. (See README for more details) * - ***************************************************************************** - -- name: Collecting Parameters for OS preparation or check to install SAP HANA - hosts: localhost - gather_facts: false - - vars: - - sap_systems: "{{ (groups['all'] == []) | ternary ('localhost', 'all') }}" - # sap_systems: "{{ (groups['all'] == []) | ternary ('localhost', groups['all'] | join(',')) }}" - - tasks: - - name: Get minimal facts - ansible.builtin.setup: - gather_subset: - - '!all' - - - name: Target systems for hana installation - ansible.builtin.pause: - prompt: "Enter comma separated list of systems that you want to check or prepare for SAP HANA: [{{ sap_systems }}]" - echo: true - register: _sap_systems - - - name: SAP server DNS domain must not be empty - ansible.builtin.pause: - prompt: "Enter DNS Domainname of your SAP systems: [{{ sap_domain | d(ansible_domain) }}]" - echo: true - register: _sap_domain - - - name: Run mode - ansible.builtin.pause: - prompt: "Do you want to check the current setup only (assert mode)? (y/n) [n]" - echo: true - register: _assert_mode - - - name: Input additional parameters if no assert mode is defined - when: _assert_mode.user_input != "y" - block: - - ansible.builtin.pause: # noqa name[missing] - role default true - prompt: "Do you want the system to update /etc/hosts for SAP? (y/n) [y]" - echo: true - register: _sap_update_hosts - - ansible.builtin.pause: # noqa name[missing] - role default false - prompt: "Do you want to update the system? (y/n) [n]" - echo: true - register: _sap_update - - ansible.builtin.pause: # noqa name[missing] - role default false - prompt: "Do you want to reboot the system if required? (y/n) [n]" - echo: true - register: _sap_reboot - - ansible.builtin.pause: # noqa name[missing] - role default true - prompt: "Do you want to stop with an error if the system needs a reboot? (y/n) [y]" - echo: true - register: _sap_fail_if_reboot_required - when: _sap_reboot.user_input != 'y' - - - name: Prepare inventory - when: - - _sap_systems.user_input is defined - - _sap_systems.user_input| trim != '' - ansible.builtin.add_host: - groups: sap_hana_prepare_hosts - name: '{{ item }}' - loop: '{{ _sap_systems.user_input | split(",") | list }}' - - - name: Configure Role Variables - ansible.builtin.set_fact: - sap_domain: '{{ ((_sap_domain.user_input | trim) != "") | ternary(_sap_domain.user_input, sap_domain | d(ansible_domain)) }}' - ### redhat.sap_install.sap_general_preconfigure - sap_general_preconfigure_modify_etc_hosts: '{{ (_sap_update_hosts.user_input is defined) and (_sap_update_hosts.user_input == "n") | ternary(false, true) }}' # default true - sap_general_preconfigure_update: '{{ (_sap_update.user_input is defined) and (_sap_update.user_input == "y") | ternary(true, false) }}' # default false - sap_general_preconfigure_fail_if_reboot_required: '{{ (_sap_fail_if_reboot_required.user_input is defined) and (_sap_fail_if_reboot_required.user_input == "n") | ternary(false, true) }}' # default true - sap_general_preconfigure_assert: '{{ (_assert_mode.user_input == "y") | ternary(true, false) }}' - # sap_general_preconfigure_system_roles_collection: 'redhat.rhel_system_roles' - ### redhat.sap_install.sap_hana_preconfigure - sap_hana_preconfigure_update: '{{ (_sap_update.user_input is defined) and (_sap_update.user_input == "y") | ternary(true, false) }}' # default false - sap_hana_preconfigure_fail_if_reboot_required: '{{ (_sap_fail_if_reboot_required.user_input is defined) and (_sap_fail_if_reboot_required.user_input == "n") | ternary(false, true) }}' # default true - sap_hana_preconfigure_reboot_ok: '{{ (_sap_reboot.user_input is defined) and (_sap_reboot.user_input == "y") | ternary(true, false) }}' # default false - sap_hana_preconfigure_assert: '{{ (_assert_mode.user_input == "y") | ternary(true, false) }}' - # sap_hana_preconfigure_system_roles_collection: 'redhat.rhel_system_roles' - -- name: Run sap_hana_prepare_exec playbook - ansible.builtin.import_playbook: sap_hana_preconfigure_exec.yml - vars: - sap_playbook_parameter_confirm: true - sap_hana_group: "{{ (groups['sap_hana_prepare_hosts'] is defined) | ternary ('sap_hana_prepare_hosts',sap_systems) }}" - sap_domain: "{{ hostvars['localhost']['sap_domain'] }}" - sap_general_preconfigure_modify_etc_hosts: "{{ hostvars['localhost']['sap_general_preconfigure_modify_etc_hosts'] }}" - sap_general_preconfigure_update: "{{ hostvars['localhost']['sap_general_preconfigure_update'] }}" - sap_general_preconfigure_fail_if_reboot_required: "{{ hostvars['localhost']['sap_general_preconfigure_fail_if_reboot_required'] }}" - sap_general_preconfigure_assert: "{{ hostvars['localhost']['sap_general_preconfigure_assert'] }}" - sap_general_preconfigure_assert_ignore_errors: true - sap_hana_preconfigure_update: "{{ hostvars['localhost']['sap_hana_preconfigure_update'] }}" - sap_hana_preconfigure_fail_if_reboot_required: "{{ hostvars['localhost']['sap_hana_preconfigure_fail_if_reboot_required'] }}" - sap_hana_preconfigure_reboot_ok: "{{ hostvars['localhost']['sap_hana_preconfigure_reboot_ok'] }}" - sap_hana_preconfigure_assert: "{{ hostvars['localhost']['sap_hana_preconfigure_assert'] }}" - sap_hana_preconfigure_assert_ignore_errors: true