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

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
* nagios-nrpe: Add check_domains
* 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

View File

@ -12,6 +12,14 @@
- client
- 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
user:
name: shellpki

View File

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