summaryrefslogtreecommitdiffstats
path: root/modules.d/95fcoe/stop-fcoe.sh
blob: a89cbbcb61fd9cb1841f18a937d3e375794169e8 (plain)
1
2
3
4
5
6
#!/bin/sh

for f in /sys/bus/fcoe/devices/ctlr_*; do
    [ -e "$f" ] || continue
    echo 0 > "$f"/enabled
done