diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-06 01:49:45 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-06 01:49:45 +0200 |
| commit | 09fbb2b1d86b8ad6671c746f3df997390f7a6293 (patch) | |
| tree | 24cddc6e7b0ad6c18a320d215e67b9c6970ef246 /roles/network/tasks | |
| parent | 0e7e66f00da0b37ef68cca0d13a1588a30cb9235 (diff) | |
Fix pve network setup
Diffstat (limited to 'roles/network/tasks')
| -rw-r--r-- | roles/network/tasks/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/network/tasks/main.yml b/roles/network/tasks/main.yml index 2cbb2513..1268b3cd 100644 --- a/roles/network/tasks/main.yml +++ b/roles/network/tasks/main.yml @@ -103,6 +103,15 @@ owner: "root" group: "root" + - name: "Configure bridge connection" + ansible.builtin.template: + src: "bridge.nmconnection.j2" + dest: "/etc/NetworkManager/system-connections/{{ network_bridge }}.nmconnection" + mode: "0600" + owner: "root" + group: "root" + when: network_bridge is defined + - name: "Configure wifi connection" ansible.builtin.template: src: "wifi-connection.nmconnection.j2" |
