]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Add headers
authorBrad Hall <bhall@nicira.com>
Sat, 4 Jun 2011 03:59:49 +0000 (20:59 -0700)
committerBrad Hall <bhall@nicira.com>
Sat, 4 Jun 2011 03:59:49 +0000 (20:59 -0700)
quantum/plugins/openvswitch/agent/ovs_quantum_agent.py
quantum/plugins/openvswitch/agent/set_external_ids.sh
quantum/plugins/openvswitch/ovs_db.py
quantum/plugins/openvswitch/ovs_models.py
quantum/plugins/openvswitch/ovs_quantum_plugin.py

index 9769ab93f97d451e339d1c20b3760a7d3fd30a28..34f28fbdd5c7dd36daeaa9306ae7cf4ff14cc49c 100755 (executable)
@@ -1,4 +1,22 @@
 #!/usr/bin/env python
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+# Copyright 2011 Nicira Networks, Inc.
+# All Rights Reserved.
+#
+#    Licensed under the Apache License, Version 2.0 (the "License"); you may
+#    not use this file except in compliance with the License. You may obtain
+#    a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+#    License for the specific language governing permissions and limitations
+#    under the License.
+# @author: Somik Behera, Nicira Networks, Inc.
+# @author: Brad Hall, Nicira Networks, Inc.
+# @author: Dan Wendlandt, Nicira Networks, Inc.
 
 import ConfigParser
 import logging as LOG
index f56dc4bd91cd519f6b894d3a50ba7b806e7c836c..2fae05f0a13517a894c3ed9fe61ecedfb639c556 100755 (executable)
@@ -1,4 +1,4 @@
-
+#!/bin/sh
 VIFLIST=`xe vif-list params=uuid --minimal | sed s/,/" "/g`
 for VIF_UUID in $VIFLIST; do
 DEVICE_NUM=`xe vif-list params=device uuid=$VIF_UUID --minimal`
index 8b4106215da80b269840a9869a4b2f26735dba12..a2a72ec8ceb0644881be19b5ada823c5faefb712 100644 (file)
@@ -1,3 +1,23 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+# Copyright 2011 Nicira Networks, Inc.
+# All Rights Reserved.
+#
+#    Licensed under the Apache License, Version 2.0 (the "License"); you may
+#    not use this file except in compliance with the License. You may obtain
+#    a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+#    License for the specific language governing permissions and limitations
+#    under the License.
+# @author: Somik Behera, Nicira Networks, Inc.
+# @author: Brad Hall, Nicira Networks, Inc.
+# @author: Dan Wendlandt, Nicira Networks, Inc.
+
+
 from sqlalchemy.orm import exc
 
 import quantum.db.api as db
index 7e8b2f54b6c12bf17067c18ae4150e1f2077b71f..610902a7caa9ccda880c8360c546f6ddcfeed8ae 100644 (file)
@@ -1,3 +1,23 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+# Copyright 2011 Nicira Networks, Inc.
+# All Rights Reserved.
+#
+#    Licensed under the Apache License, Version 2.0 (the "License"); you may
+#    not use this file except in compliance with the License. You may obtain
+#    a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+#    License for the specific language governing permissions and limitations
+#    under the License.
+# @author: Somik Behera, Nicira Networks, Inc.
+# @author: Brad Hall, Nicira Networks, Inc.
+# @author: Dan Wendlandt, Nicira Networks, Inc.
+
+
 import uuid
 
 from sqlalchemy import Column, Integer, String, ForeignKey
index e8111c65983ea71d897be7984a159a8606e2dded..50053df7a72ad1026b02c93a2c8248563ccd4aac 100644 (file)
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+# Copyright 2011 Nicira Networks, Inc.
+# All Rights Reserved.
+#
+#    Licensed under the Apache License, Version 2.0 (the "License"); you may
+#    not use this file except in compliance with the License. You may obtain
+#    a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+#    License for the specific language governing permissions and limitations
+#    under the License.
+# @author: Somik Behera, Nicira Networks, Inc.
+# @author: Brad Hall, Nicira Networks, Inc.
+# @author: Dan Wendlandt, Nicira Networks, Inc.
+
 import ConfigParser
 import logging as LOG
 import os