feat: add openfortivpn role

This commit is contained in:
Matthieu Bessat 2024-07-03 18:02:43 +02:00
parent 2a7efd6472
commit 4801f7bd38
3 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,26 @@
# - name: Generate openfortivpn systemd service unit
# become: true
# template:
# src: systemd/system/openfortivpn.service
# dest: /usr/lib/systemd/system/openfortivpn@.service
- name: Create config dir
become: true
file:
path: /etc/openfortivpn
state: directory
- name: Generate openfortivpn profile config
become: true
template:
src: openfortivpn/basic_vpn.conf
dest: "/etc/openfortivpn/{{ item.name }}.conf"
with_items: "{{ openfortivpn_profiles }}"
- name: Enable openfortivpn systemd service for a given profile
become: true
ansible.builtin.systemd_service:
name: "openfortivpn@{{ item.name }}"
state: stopped
enabled: true
loop: "{{ openfortivpn_profiles }}"