openvpn: Run OpenVPN with the \_openvpn user and group instead of nobody which is originally for NFS
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
Jérémy Dubois 2022-09-06 11:26:19 +02:00
parent 7e979132f7
commit c3be57410d
3 changed files with 11 additions and 2 deletions

View file

@ -26,6 +26,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* openvpn: automate the initialization of the CA and the creation of the server certificate ; use openssl_dhparam module instead of a command * openvpn: automate the initialization of the CA and the creation of the server certificate ; use openssl_dhparam module instead of a command
* nagios-nrpe: Add check_domains * nagios-nrpe: Add check_domains
* generate-ldif: support any version of MariaDB (instead of only 10.0, 10.1 and 10.3) * generate-ldif: support any version of MariaDB (instead of only 10.0, 10.1 and 10.3)
* openvpn: Run OpenVPN with the \_openvpn user and group instead of nobody which is originally for NFS
### Fixed ### Fixed

View file

@ -12,6 +12,14 @@
- client - client
- server - server
- name: Create the _openvpn user
user:
name: _openvpn
system: yes
create_home: no
home: "/nonexistent"
shell: "/usr/sbin/nologin"
- name: Create the shellpki user - name: Create the shellpki user
user: user:
name: shellpki name: shellpki

View file

@ -1,5 +1,5 @@
user nobody user _openvpn
group nogroup group _openvpn
local {{ ansible_default_ipv4.address }} local {{ ansible_default_ipv4.address }}
port 1194 port 1194