summaryrefslogtreecommitdiffstats
path: root/fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/files/configure_bridges.sh
blob: 4a5c8065d7482115129e645ee64971343e57358e (plain)
1
2
3
4
5
#!/usr/bin/env bash

for bridge in `sudo ovs-vsctl list-br`; do
  sudo ovs-vsctl --no-wait set Bridge $bridge datapath_type=$1;
done;