From a318debe7f6c83f74e48809b22e6fd98a1cbddb2 Mon Sep 17 00:00:00 2001 From: Erich Cordoba Date: Tue, 19 Mar 2019 12:02:23 -0600 Subject: [PATCH] Add notices to Intel authored files. Story: 2005265 Task: 30087 Change-Id: If7ae800feba773442e452b3183107696e2e6f88e Signed-off-by: Erich Cordoba --- devstack/build.sh | 5 +++++ devstack/lib/stx-fault | 4 ++++ devstack/override-defaults | 6 ++++++ devstack/plugin.sh | 5 +++++ devstack/settings | 6 ++++++ fm-rest-api/fm/fm/api/middleware/parsable_error.py | 3 +++ 6 files changed, 29 insertions(+) diff --git a/devstack/build.sh b/devstack/build.sh index 449b92d3..f5b2a697 100755 --- a/devstack/build.sh +++ b/devstack/build.sh @@ -1,4 +1,9 @@ #!/bin/bash +# +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2019 Intel Corporation +# # devstack/build.sh # Run DevStack plugin builds diff --git a/devstack/lib/stx-fault b/devstack/lib/stx-fault index dcd58e90..58997364 100644 --- a/devstack/lib/stx-fault +++ b/devstack/lib/stx-fault @@ -1,5 +1,9 @@ #!/bin/bash # +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2019 Intel Corporation +# # lib/stx-fault # Functions to control the configuration and operation of the **fault** service diff --git a/devstack/override-defaults b/devstack/override-defaults index 999da163..4c312784 100644 --- a/devstack/override-defaults +++ b/devstack/override-defaults @@ -1,2 +1,8 @@ #!/bin/bash +# +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2019 Intel Corporation +# + # Plug-in overrides diff --git a/devstack/plugin.sh b/devstack/plugin.sh index da4ed928..3e840014 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -1,4 +1,9 @@ #!/bin/bash +# +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2019 Intel Corporation +# # devstack/plugin.sh # Triggers stx-fault specific functions to install and configure Fault Management diff --git a/devstack/settings b/devstack/settings index 7e45d393..fe0283a2 100644 --- a/devstack/settings +++ b/devstack/settings @@ -1,4 +1,10 @@ #!/bin/bash +# +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2019 Intel Corporation +# + # Devstack settings # Services diff --git a/fm-rest-api/fm/fm/api/middleware/parsable_error.py b/fm-rest-api/fm/fm/api/middleware/parsable_error.py index ac4b5c0c..09557526 100644 --- a/fm-rest-api/fm/fm/api/middleware/parsable_error.py +++ b/fm-rest-api/fm/fm/api/middleware/parsable_error.py @@ -13,6 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. +# +# Copyright (C) 2019 Intel Corporation +# """ Middleware to replace the plain text message body of an error response with one formatted so the client can parse it.