Skip to content

Commit

Permalink
orahost: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Rendanic authored Apr 26, 2024
1 parent 1feacac commit d2f0258
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions roles/orahost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Role to configure the hostsystem for ansible-oracle
- [disable_firewall](#disable_firewall)
- [disable_numa_boot](#disable_numa_boot)
- [disable_selinux](#disable_selinux)
- [etc_hosts_entries](#etc_hosts_entries)
- [etc_hosts_ip](#etc_hosts_ip)
- [extrarepos_disabled](#extrarepos_disabled)
- [extrarepos_enabled](#extrarepos_enabled)
Expand Down Expand Up @@ -284,6 +285,31 @@ disable_numa_boot: true
disable_selinux: true
```

### etc_hosts_entries

List of additional entries, optionally along with aliases, to be put into /etc/hosts. E.g. on non-DNS environments or if we don't rely on DNS

#### Default value

```YAML
etc_hosts_entries: []
```

#### Example usage

```YAML
etc_hosts_entries:
- fqdn: clusternode1.example.com
ip: 192.168.1.1
- fqdn: clusternode2.example.com
ip: 192.168.1.2
aliases:
- myalias.example.com
would create following entries in /etc/hosts:
192.168.1.1 clusternode1 clusternode1.example.com
192.168.1.2 clusternode2 clusternode2.example.com myalias.example.com
```

### etc_hosts_ip

Set IP to 2nd Interface on virtualbox and 1st for all otehr installations
Expand Down

0 comments on commit d2f0258

Please sign in to comment.