From 47a4f09be4003e78ca8df03c093840bba9c638ba Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 12 May 2020 15:55:46 -0700 Subject: [PATCH] bridgify: use host variables for the various things Signed-off-by: Kevin Fenzi --- playbooks/bridgeify.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/playbooks/bridgeify.yml b/playbooks/bridgeify.yml index 29cbc11224..24c680850e 100644 --- a/playbooks/bridgeify.yml +++ b/playbooks/bridgeify.yml @@ -12,7 +12,7 @@ autoconnect: yes ip: address: - - 10.3.163.11/24 + - "{{ br0_ip }}/24" gateway4: 10.3.163.254 dns: - 10.3.163.33 @@ -28,7 +28,7 @@ state: up type: ethernet master: br0 - mac: E4:43:4B:B1:70:88 + mac: "{{ mac1 }}" - name: br1 state: up @@ -42,17 +42,17 @@ state: up type: ethernet master: br1 - mac: E4:43:4B:B1:70:8A + mac: "{{ mac2 }}" - name: deployment state: down type: ethernet - mac: e4:43:4b:b1:70:a8 + mac: "{{ mac3 }}" - name: unused state: down type: ethernet - mac: e4:43:4b:b1:70:a9 + mac: "{{ mac4 }}" roles: - role: linux-system-roles.network