mirror of
https://gitea.0xace.cc/ansible-galaxy/wireguard-ui.git
synced 2024-11-24 23:36:41 +00:00
add Debian support
This commit is contained in:
parent
ec6131ccd1
commit
671f7b52ee
@ -0,0 +1,7 @@
|
||||
- name: "Include WireGuard install"
|
||||
include_tasks: wireguard_install.yaml
|
||||
when: wireguard_install
|
||||
|
||||
- name: "Include WireGuard UI install with podman"
|
||||
include_tasks: podman.yaml
|
||||
when: wireguard_ui_container_engine == 'podman'
|
71
tasks/Debian/podman.yaml
Normal file
71
tasks/Debian/podman.yaml
Normal file
@ -0,0 +1,71 @@
|
||||
- name: Install WireGuard UI with container
|
||||
block:
|
||||
- name: Login to image registries with podman
|
||||
containers.podman.podman_login:
|
||||
registry: '{{ item.key }}'
|
||||
username: '{{ item.value.username }}'
|
||||
password: '{{ item.value.password }}'
|
||||
become: true
|
||||
no_log: true
|
||||
changed_when: False
|
||||
loop: '{{ wireguard_ui_container_registry_auth | dict2items }}'
|
||||
when: wireguard_ui_container_registry_auth is defined
|
||||
|
||||
- name: Create configuration dir and subdirs for WireGuard UI
|
||||
file:
|
||||
name: "{{ item }}"
|
||||
state: directory
|
||||
loop:
|
||||
- "{{ wireguard_ui_config_dir }}"
|
||||
- "{{ wireguard_ui_config_dir }}/server"
|
||||
- "{{ wireguard_ui_config_dir }}/users"
|
||||
|
||||
- name: Force login and password change for first admin user
|
||||
template:
|
||||
dest: "{{ wireguard_ui_config_dir }}/users/admin.json"
|
||||
src: admin.json.j2
|
||||
register: wireguard_ui_auth
|
||||
notify: Restart WireGuard UI with podman
|
||||
|
||||
- name: Create WireGuard UI with podman
|
||||
containers.podman.podman_container:
|
||||
name: "{{ wireguard_ui_container_name }}"
|
||||
hostname: "{{ wireguard_ui_container_name }}"
|
||||
network_mode: "{{ wireguard_ui_network_mode }}"
|
||||
image: "{{ wireguard_ui_container_registry }}/{{ wireguard_ui_image_name }}:{{ wireguard_ui_image_tag }}"
|
||||
state: created
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
env: "{{ wireguard_ui_combined_env }}"
|
||||
volumes: "{{ wireguard_ui_volumes }}"
|
||||
register: wireguard_ui_container
|
||||
notify: Restart WireGuard UI with podman
|
||||
|
||||
- name: Generate container systemd unit
|
||||
shell: "podman generate systemd {{ wireguard_ui_container_name }}"
|
||||
register: wireguard_ui_systemd_unit
|
||||
changed_when: False
|
||||
|
||||
- name: Create WireGuard UI systemd unit
|
||||
copy:
|
||||
dest: "/etc/systemd/system/{{ wireguard_ui_systemd_unit_name }}"
|
||||
content: "{{ wireguard_ui_systemd_unit.stdout | regex_replace('^#.*', multiline=True) | trim }}"
|
||||
|
||||
- name: Create WireGuard UI systemd watcher unit
|
||||
template:
|
||||
dest: "/etc/systemd/system/{{ wireguard_ui_watcher_systemd_service_unit_name }}"
|
||||
src: wireguard-ui-watcher.service.j2
|
||||
|
||||
- name: Create WireGuard UI systemd watcher path
|
||||
template:
|
||||
dest: "/etc/systemd/system/{{ wireguard_ui_watcher_systemd_path_unit_name }}"
|
||||
src: wireguard-ui-watcher.path.j2
|
||||
|
||||
- name: Logout from image registries
|
||||
containers.podman.podman_logout:
|
||||
registry: '{{ item.key }}'
|
||||
become: true
|
||||
no_log: true
|
||||
changed_when: False
|
||||
loop: '{{ wireguard_ui_container_registry_auth | dict2items }}'
|
||||
when: wireguard_ui_container_registry_auth is defined
|
14
tasks/Debian/wireguard_install.yaml
Normal file
14
tasks/Debian/wireguard_install.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
- name: Install wireguard for Debain 12
|
||||
block:
|
||||
- name: Install wireguard packages
|
||||
apt:
|
||||
name:
|
||||
- wireguard-tools
|
||||
state: present
|
||||
update_cache: yes
|
||||
|
||||
- name: Enable wg-quick systemd unit
|
||||
systemd:
|
||||
name: wg-quick@{{ wireguard_ui_combined_env['WGUI_CONFIG_FILE_PATH'] | basename | split('.') | first }}
|
||||
enabled: yes
|
||||
daemon_reload: yes
|
@ -18,6 +18,7 @@
|
||||
loop:
|
||||
- "{{ wireguard_ui_config_dir }}"
|
||||
- "{{ wireguard_ui_config_dir }}/server"
|
||||
- "{{ wireguard_ui_config_dir }}/users"
|
||||
|
||||
- name: Force login and password change for first admin user
|
||||
template:
|
||||
|
@ -34,6 +34,7 @@
|
||||
masked: no
|
||||
loop:
|
||||
- "{{ wireguard_ui_systemd_unit_name }}"
|
||||
tags: wireguard_ui_start
|
||||
|
||||
- name: Enable WireGuard UI watcher services
|
||||
systemd:
|
||||
@ -54,6 +55,3 @@
|
||||
masked: no
|
||||
loop:
|
||||
- "{{ wireguard_ui_watcher_systemd_path_unit_name }}"
|
||||
|
||||
tags: wireguard_ui_start
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user