You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2013/01/31 20:40:12 UTC

[19/50] [abbrv] git commit: refs/heads/javelin - fixing licensing headers

fixing licensing headers


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/1b39b0e9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/1b39b0e9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/1b39b0e9

Branch: refs/heads/javelin
Commit: 1b39b0e908af51d3d00c9e6dec107aa5b8702744
Parents: 1f7eaf3
Author: David Nalley <da...@gnsa.us>
Authored: Tue Jan 29 23:45:11 2013 -0500
Committer: David Nalley <da...@gnsa.us>
Committed: Tue Jan 29 23:45:11 2013 -0500

----------------------------------------------------------------------
 .../resources/security_group_agent/cs-sgagent      |   18 ++++++++++++-
 .../networkservice/SecurityGroupHttpClient.java    |   20 +++++++++++++++
 2 files changed, 37 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1b39b0e9/plugins/hypervisors/baremetal/resources/security_group_agent/cs-sgagent
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/baremetal/resources/security_group_agent/cs-sgagent b/plugins/hypervisors/baremetal/resources/security_group_agent/cs-sgagent
index cda7017..02426d0 100755
--- a/plugins/hypervisors/baremetal/resources/security_group_agent/cs-sgagent
+++ b/plugins/hypervisors/baremetal/resources/security_group_agent/cs-sgagent
@@ -1,5 +1,4 @@
 #!/bin/sh
-
 # the following is chkconfig init header
 #
 # cs-sgagent:  cloudStack baremetal sercurity group agent
@@ -12,6 +11,23 @@
 # pidfile: /var/run/cssgagent.pid
 #
 
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you 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.
+
 check_status() {
 	pidfile='/var/run/cssgagent.pid'
 	if [ ! -f $pidfile ]; then

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1b39b0e9/plugins/hypervisors/baremetal/src/com/cloud/baremetal/networkservice/SecurityGroupHttpClient.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/baremetal/src/com/cloud/baremetal/networkservice/SecurityGroupHttpClient.java b/plugins/hypervisors/baremetal/src/com/cloud/baremetal/networkservice/SecurityGroupHttpClient.java
index 203fed3..7ad351c 100755
--- a/plugins/hypervisors/baremetal/src/com/cloud/baremetal/networkservice/SecurityGroupHttpClient.java
+++ b/plugins/hypervisors/baremetal/src/com/cloud/baremetal/networkservice/SecurityGroupHttpClient.java
@@ -1,3 +1,23 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you 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.
+// 
+// Automatically generated by addcopyright.py at 01/29/2013
+// Apache License, Version 2.0 (the "License"); you may not use this
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 package com.cloud.baremetal.networkservice;
 
 import com.cloud.agent.api.Answer;