This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
solutions-tsg-scripts/roles/tsg-env-tun-mode/templates/tsg-env_stop.j2

9 lines
271 B
Plaintext
Raw Normal View History

2020-03-28 14:37:28 +08:00
#!/bin/bash
#
2020-06-24 18:08:40 +08:00
echo 0 >/sys/class/net/{{ server.ethname }}/device/sriov_numvfs
ifconfig {{ server.ethname }}.100 down
vconfig rem {{ server.ethname }}.100
2020-06-11 13:17:06 +08:00
{% if tsg_access_type == 4 %}
2020-06-24 18:08:40 +08:00
echo 0 >/sys/class/net/{{ nic_data_incoming.ethname }}/device/sriov_numvfs
2020-06-11 13:17:06 +08:00
{% endif %}