openstack-ansible-lxc_conta.../templates/veth-cleanup.sh.j2

10 lines
401 B
Django/Jinja

#!/usr/bin/env bash
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Veth cleanup for items in the container_networks data structure
{% for key, value in lxc_container_networks_combined.items() %}
{% if value.type is not defined or value.type == 'veth' %}
ip link del {{ lxc_container_network_veth_pair_prefix }}_{{ value.interface }} || true
{% endif %}
{% endfor %}