diff options
author | Markos Chandras <mchandras@suse.de> | 2018-03-14 08:01:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-14 08:01:27 +0000 |
commit | 990f97e9ebf417dd18e533cbbfec8977fe59f39a (patch) | |
tree | e2324d7e8b58f2588c3abda8bf03b48383a3c654 /xci/playbooks/roles/bootstrap-host/templates/suse | |
parent | 2c11cf6509eafafe80fa50657417b19a4458915e (diff) | |
parent | 7dd14e002128b5e6fe5302e6f7fe8620682a7d53 (diff) |
Merge "xci: Merge configure-network and syncronize-time roles"
Diffstat (limited to 'xci/playbooks/roles/bootstrap-host/templates/suse')
-rw-r--r-- | xci/playbooks/roles/bootstrap-host/templates/suse/suse.interface.j2 | 17 | ||||
-rw-r--r-- | xci/playbooks/roles/bootstrap-host/templates/suse/suse.routes.j2 | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/xci/playbooks/roles/bootstrap-host/templates/suse/suse.interface.j2 b/xci/playbooks/roles/bootstrap-host/templates/suse/suse.interface.j2 new file mode 100644 index 00000000..27b01eb4 --- /dev/null +++ b/xci/playbooks/roles/bootstrap-host/templates/suse/suse.interface.j2 @@ -0,0 +1,17 @@ +STARTMODE='auto' +BOOTPROTO='static' +{% if item.vlan_id is defined %} +ETHERDEVICE={{ ansible_default_ipv4.interface }} +VLAN_ID={{ item.vlan_id }} +{% endif %} +{% if item.bridge_ports is defined %} +BRIDGE='yes' +BRIDGE_FORWARDDELAY='0' +BRIDGE_STP=off +BRIDGE_PORTS={{ item.bridge_ports }} +{% endif %} +{% if item.ip is defined %} +IPADDR={{ item.ip }} +{% endif %} +PRE_UP_SCRIPT="compat:suse:network-config-suse" +POST_DOWN_SCRIPT="compat:suse:network-config-suse" diff --git a/xci/playbooks/roles/bootstrap-host/templates/suse/suse.routes.j2 b/xci/playbooks/roles/bootstrap-host/templates/suse/suse.routes.j2 new file mode 100644 index 00000000..7c868447 --- /dev/null +++ b/xci/playbooks/roles/bootstrap-host/templates/suse/suse.routes.j2 @@ -0,0 +1 @@ +{{ item.route }} {{ item.gateway }} |