You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/network/config/vfconfig/files/vfconfig.include

12 lines
298 B
Bash

#!/bin/sh
setup_switch() {
# Skip switch setup on network restart. The netifd process
# will be started afterwards and remove all interfaces again...
if [ "$initscript" = /etc/init.d/network ] && [ "$action" = restart ]; then
return 0
fi
/sbin/dsaconfig apply 2>&1 | logger -t dsaconfig
}