8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
# Called from /etc/bewan/rc
|
|
|
|
# For now, disable hardware switching to isolate each port
|
|
if [ -f /bin/ethswctl ]; then
|
|
ethswctl -c hw-switching -o disable
|
|
fi
|