aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/open-contrail/files/provision/compute.filters.patch
blob: 04bf42f32ff086c09d2f403480390c4082881030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
*** a/compute.filters	Mon Sep 28 15:13:48 2015
--- b/compute.filters	Mon Sep 28 15:16:06 2015
***************
*** 83,88 ****
--- 83,91 ----
  # nova/network/linux_net.py: 'ovs-vsctl', ....
  ovs-vsctl: CommandFilter, ovs-vsctl, root
  
+ # nova/virt/libvirt/vif.py: 'vrouter-port-control', ...
+ vrouter-port-control: CommandFilter, vrouter-port-control, root
+ 
  # nova/network/linux_net.py: 'ovs-ofctl', ....
  ovs-ofctl: CommandFilter, ovs-ofctl, root
  
"p">, traffic): """Triggers traffic to be sent from the traffic generator. This is a blocking function. :param traffic: A dictionary describing the traffic to send. """ raise NotImplementedError( "The TrafficController does not implement", "the \"send_traffic\" function.") def send_traffic_async(self, traffic, function): """Triggers traffic to be sent asynchronously. This is not a blocking function. :param traffic: A dictionary describing the traffic to send. :param function: A dictionary describing the function to call between send and wait in the form: function = { 'function' : package.module.function, 'args' : args } If this function requires more than one argument, all should be should be passed using the args list and appropriately handled. """ raise NotImplementedError( "The TrafficController does not implement", "the \"send_traffic_async\" function.") def stop_traffic(self): """Kills traffic being sent from the traffic generator. """ raise NotImplementedError( "The TrafficController does not implement", "the \"stop_traffic\" function.")