From b99c3fb2023c07d2762417a0f227122444e671bc Mon Sep 17 00:00:00 2001 From: Ken Schmidt Date: Mon, 12 Mar 2018 16:59:47 -0700 Subject: [PATCH] Update licensing information --- LICENSE | 14 ++++++++------ README.md | 12 ++++++++++++ main.go | 6 ++++++ ovirt/config.go | 6 ++++++ ovirt/data_source_disk.go | 6 ++++++ ovirt/provider.go | 6 ++++++ ovirt/resource_disk.go | 6 ++++++ ovirt/resource_vm.go | 6 ++++++ 8 files changed, 56 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 58ef15cc..5f715fc5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,9 +1,11 @@ -Copyright 2017 Battelle Memorial Institute +terraform-provider-ovirt -Redistribution and use in source and binary forms, with or without modification, arepermitted provided that the following conditions are met: +Copyright © 2017, Battelle Memorial Institute -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +All rights reserved. +1. Battelle Memorial Institute (hereinafter Battelle) hereby grants permission to any person or entity lawfully obtaining a copy of this software and associated documentation files (hereinafter "the Software") to redistribute and use the Software in source and binary forms, with or without modification. Such person or entity may use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and may permit others to do so, subject to the following conditions: + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Other than as used herein, neither the name Battelle Memorial Institute or Battelle may be used in any form whatsoever without the express written consent of Battelle. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AREDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCHDAMAGE. +2. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BATTELLE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index 40bad0f8..3ab61cf2 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,15 @@ mkdir -p terraform.d/plugins/darwin_amd64 cp $GOPATH/src/github.com/EMSL-MSC/terraform-provider-ovirt/terraform-provider-ovirt terraform.d/plugins/darwin_amd64 terraform init ``` + +## Disclaimer +This material was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor the United States Department of Energy, nor Battelle, nor any of their employees, nor any jurisdiction or organization that has cooperated in the development of these materials, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness or any information, apparatus, product, software, or process disclosed, or represents that its use would not infringe privately owned rights. + +Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or any agency thereof, or Battelle Memorial Institute. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or any agency thereof. + +PACIFIC NORTHWEST NATIONAL LABORATORY +operated by +BATTELLE +for the +UNITED STATES DEPARTMENT OF ENERGY +under Contract DE-AC05-76RL01830 diff --git a/main.go b/main.go index 85b0e6e5..0404df52 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package main import ( diff --git a/ovirt/config.go b/ovirt/config.go index 5034336c..0d4d388a 100644 --- a/ovirt/config.go +++ b/ovirt/config.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package ovirt type Config struct { diff --git a/ovirt/data_source_disk.go b/ovirt/data_source_disk.go index 61d0fd16..395c8402 100644 --- a/ovirt/data_source_disk.go +++ b/ovirt/data_source_disk.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package ovirt import ( diff --git a/ovirt/provider.go b/ovirt/provider.go index 41849210..63eae4ec 100644 --- a/ovirt/provider.go +++ b/ovirt/provider.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package ovirt import ( diff --git a/ovirt/resource_disk.go b/ovirt/resource_disk.go index 4db54de9..1c3a6920 100644 --- a/ovirt/resource_disk.go +++ b/ovirt/resource_disk.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package ovirt import ( diff --git a/ovirt/resource_vm.go b/ovirt/resource_vm.go index 639bf51a..b1a0769b 100644 --- a/ovirt/resource_vm.go +++ b/ovirt/resource_vm.go @@ -1,3 +1,9 @@ +// Copyright (C) 2017 Battelle Memorial Institute +// All rights reserved. +// +// This software may be modified and distributed under the terms +// of the BSD-2 license. See the LICENSE file for details. + package ovirt import (