Support Oracle Linux 9 (#185)

* add support for Oracle Linux 9

* add Oracle Linux 9 to README.md
master
cola-zero 1 year ago committed by GitHub
parent 8a3fad9859
commit b844de89c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,6 +26,7 @@ This role should work with:
- AlmaLinux
- Rocky Linux
- openSUSE Leap 15.4
- Oracle Linux 9
Best effort:

@ -182,6 +182,18 @@ platforms:
groups:
- vpn
- el9
- name: test-wg-oracle9
box: generic/oracle9
memory: 1024
cpus: 2
interfaces:
- auto_config: true
network_name: private_network
type: static
ip: 192.168.10.180
groups:
- vpn
- el9
provisioner:
name: ansible
@ -269,6 +281,11 @@ provisioner:
wireguard_port: 51820
wireguard_persistent_keepalive: "30"
wireguard_endpoint: "192.168.10.170"
test-wg-oracle9:
wireguard_address: "10.10.10.180/24"
wireguard_port: 51820
wireguard_persistent_keepalive: "30"
wireguard_endpoint: "192.168.10.180"
scenario:
name: kvm

@ -0,0 +1,8 @@
---
# Copyright (C) 2022 Masahiro Koga
# SPDX-License-Identifier: GPL-3.0-or-later
- name: (OracleLinux) Install wireguard-tools package
ansible.builtin.yum:
name: wireguard-tools
state: present
Loading…
Cancel
Save