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
tsg-tsg-os-buildimage/tsg-9140-scripts/roles/system-init/templates/ifdown-local.toml.j2
2021-05-08 06:49:19 -04:00

11 lines
360 B
Django/Jinja

#!/bin/sh
INF="$1"
STA="$2"
logger "$0 called for interface named $INF with $STA ..."
case "$INF" in
enp1s0) logger "Setting $STA $INF VF And Vlan ..."; /sbin/setdown.enp1s0.ips $INF $STA;;
enp130s0) logger "Setting $STA $INF VF And Vlan ..."; /sbin/setdown.enp130s0.ips $INF $STA;;
enp131s0f0) logger " $INF is $STA ...";
esac
exit 0