9 lines
271 B
Django/Jinja
9 lines
271 B
Django/Jinja
#!/bin/bash
|
|
#
|
|
echo 0 >/sys/class/net/{{ server.ethname }}/device/sriov_numvfs
|
|
ifconfig {{ server.ethname }}.100 down
|
|
vconfig rem {{ server.ethname }}.100
|
|
{% if tsg_access_type == 4 %}
|
|
echo 0 >/sys/class/net/{{ nic_data_incoming.ethname }}/device/sriov_numvfs
|
|
{% endif %}
|