From 75d4fbae219fb6cf00c5182d709052ce579d588f Mon Sep 17 00:00:00 2001 From: Przemyslaw Kaminski Date: Mon, 18 May 2015 08:08:13 +0200 Subject: [PATCH] Fix copyrights Change-Id: I1b601fb19b71f664168be1980f7cc6783eff2712 --- fuel_dev_tools/__init__.py | 21 +++++++++++---------- fuel_dev_tools/cmd_parser.py | 14 ++++++++++++++ fuel_dev_tools/command.py | 14 ++++++++++++++ fuel_dev_tools/debug.py | 14 ++++++++++++++ fuel_dev_tools/slaves/__init__.py | 14 ++++++++++++++ fuel_dev_tools/slaves/mcagent.py | 14 +++++++++++++- 6 files changed, 80 insertions(+), 11 deletions(-) diff --git a/fuel_dev_tools/__init__.py b/fuel_dev_tools/__init__.py index e325064..4065361 100644 --- a/fuel_dev_tools/__init__.py +++ b/fuel_dev_tools/__init__.py @@ -1,16 +1,17 @@ # -*- coding: utf-8 -*- - -# 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 +# Copyright 2015 Mirantis, Inc. # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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 # -# 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. +# 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. import pbr.version diff --git a/fuel_dev_tools/cmd_parser.py b/fuel_dev_tools/cmd_parser.py index eac979d..65b7ab1 100644 --- a/fuel_dev_tools/cmd_parser.py +++ b/fuel_dev_tools/cmd_parser.py @@ -1,3 +1,17 @@ +# Copyright 2015 Mirantis, Inc. +# +# 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. + class CmdParserMixin(object): """Mixin for parsing fuel CLI output.""" diff --git a/fuel_dev_tools/command.py b/fuel_dev_tools/command.py index 94c398c..1c471d3 100644 --- a/fuel_dev_tools/command.py +++ b/fuel_dev_tools/command.py @@ -1,3 +1,17 @@ +# Copyright 2015 Mirantis, Inc. +# +# 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. + from cliff import command from fuel_dev_tools import debug diff --git a/fuel_dev_tools/debug.py b/fuel_dev_tools/debug.py index 1cfb72e..6d8a367 100644 --- a/fuel_dev_tools/debug.py +++ b/fuel_dev_tools/debug.py @@ -1,3 +1,17 @@ +# Copyright 2015 Mirantis, Inc. +# +# 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. + import six diff --git a/fuel_dev_tools/slaves/__init__.py b/fuel_dev_tools/slaves/__init__.py index e8ad086..4d123f5 100644 --- a/fuel_dev_tools/slaves/__init__.py +++ b/fuel_dev_tools/slaves/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2015 Mirantis, Inc. +# +# 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. + from fabric import api as fabric_api from fuel_dev_tools import cmd_parser diff --git a/fuel_dev_tools/slaves/mcagent.py b/fuel_dev_tools/slaves/mcagent.py index d29cf39..41a0ccd 100644 --- a/fuel_dev_tools/slaves/mcagent.py +++ b/fuel_dev_tools/slaves/mcagent.py @@ -1,4 +1,16 @@ -import os +# Copyright 2015 Mirantis, Inc. +# +# 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. from fuel_dev_tools import command from fuel_dev_tools.docker import astute