Skip to content

Commit

Permalink
codespell corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Koch committed Aug 28, 2024
1 parent 45391cb commit fbc4bbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion playbooks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ When you call this playbook against a remote host make sure the user can connect
```[bash]
-u <connection user>: User that establishes the ssh connection
-k: asks for password or passphrase of the connection user, if required for ssh
-K: asks for the privilige escalation password of the connection user to become root on the target host
-K: asks for the privilege escalation password of the connection user to become root on the target host
```

If you want to embed this playbook or run a non-interactive version, you need to prepare an ansible inventory that contains a group for the hosts you want to install, e.g. my_hanas (see also <https://docs.ansible.com/ansible/latest/inventory_guide/intro_inventory.html>).
Expand Down
4 changes: 2 additions & 2 deletions playbooks/sap_hana_preconfigure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* sap_hana_preconfigure *
* *
* This playbook is used to prepare an SAP HANA system. *
* The minimum viable parameters to succussfully prepare your system for an *
* 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 *
* *
Expand Down Expand Up @@ -62,7 +62,7 @@
echo: true
register: _assert_mode

- name: Input addtional parameters if no assert mode is defined
- 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
Expand Down
2 changes: 1 addition & 1 deletion playbooks/sap_hana_preconfigure_exec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
msg: |-
The Hana setup runs with the following configuration
- 'Hostname : {{ sap_hostname | d(ansible_hostname) }}'
- 'IP Adress : {{ sap_ip | d(ansible_default_ipv4.address) }}'
- 'IP Address : {{ sap_ip | d(ansible_default_ipv4.address) }}'
- 'Domain : {{ (sap_domain | d('') | length > 0) | ternary(sap_domain, ansible_domain) }}'
- 'Modify hosts : {{ sap_general_preconfigure_modify_etc_hosts | d('false') }}'
- 'Update OS : {{ sap_hana_preconfigure_update | d('false') }}'
Expand Down

0 comments on commit fbc4bbc

Please sign in to comment.