diff --git a/README.md b/README.md index 879f6f7..9a6075f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This role allows you to install and configure a WireGuard server. ```yml - include_role: - name: bviktor.wireguard + name: noobient.wireguard vars: wg_endpoint: 'vpn.killingfloor2.party' wg_clients: '6' diff --git a/tasks/config.yml b/tasks/config.yml index ed515e1..4b9f2e1 100644 --- a/tasks/config.yml +++ b/tasks/config.yml @@ -80,7 +80,7 @@ # TODO other options https://www.cyberciti.biz/faq/centos-8-set-up-wireguard-vpn-server/ - include_role: - name: bviktor.sysctl + name: noobient.sysctl vars: file: "{{ item.file }}" option: "{{ item.option }}" diff --git a/tasks/firewall.yml b/tasks/firewall.yml index 9b904b8..d0bf627 100644 --- a/tasks/firewall.yml +++ b/tasks/firewall.yml @@ -1,7 +1,7 @@ --- # make sure firewalld is installed, we need it for the reload - include_role: - name: bviktor.firewalld + name: noobient.firewalld # we use /etc/firewalld, WG uses /lib/firewalld, causing a conflict, get rid of it - name: Disable stock WireGuard firewall service @@ -17,7 +17,7 @@ # this is for 'clients' reaching the 'server' - include_role: - name: bviktor.firewalld + name: noobient.firewalld vars: service: 'wireguard' port: "{{ wg_port | default(wg_default_port) }}/udp" @@ -30,7 +30,7 @@ # this is for 'clients' talking to each other - include_role: - name: bviktor.firewalld + name: noobient.firewalld vars: zone: 'wireguard' interface: 'wg0'