fix service name on rocky8
continuous-integration/drone/pr Build was killed Details

This commit is contained in:
Robert Kaussow 2021-10-19 21:51:49 +02:00
parent 0ea90a83ec
commit 1a0e26a998
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
4 changed files with 17 additions and 1 deletions

View File

@ -1,2 +1,14 @@
---
- include_vars: "{{ var_files }}"
vars:
var_files: "{{ lookup('first_found', params, errors='ignore') }}"
params:
files:
- "{{ ansible_lsb.id | default('') | lower }}.yml"
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family | lower }}.yml"
paths:
- "vars"
when: var_files
- include_tasks: setup.yml

View File

@ -59,7 +59,7 @@
- name: Ensure openvpn service is up and running
service:
name: "openvpn@{{ openvpn_client_name }}"
name: "{{ __openvpn_service_prefix }}@{{ openvpn_client_name }}"
state: "{{ openvpn_service_state }}"
enabled: yes
become: True

2
vars/redhat-7.yml Normal file
View File

@ -0,0 +1,2 @@
---
__openvpn_service_prefix: openvpn

2
vars/redhat-8.yml Normal file
View File

@ -0,0 +1,2 @@
---
__openvpn_service_prefix: openvpn-client