From 96a91461b5238812de7c48b7f675b74c36fcddcd Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Wed, 16 Aug 2017 11:57:05 -0700 Subject: [PATCH] Add boilerplate --- pkg/drivers/kvm/domain.go | 16 ++++++++++++++++ pkg/drivers/kvm/kvm.go | 21 +++++++++++++++------ pkg/drivers/kvm/network.go | 16 ++++++++++++++++ pkg/drivers/kvm/storage.go | 16 ++++++++++++++++ 4 files changed, 63 insertions(+), 6 deletions(-) diff --git a/pkg/drivers/kvm/domain.go b/pkg/drivers/kvm/domain.go index 227a378181f0..87b85494d14d 100644 --- a/pkg/drivers/kvm/domain.go +++ b/pkg/drivers/kvm/domain.go @@ -1,3 +1,19 @@ +/* +Copyright 2016 The Kubernetes Authors 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. +*/ + package kvm import ( diff --git a/pkg/drivers/kvm/kvm.go b/pkg/drivers/kvm/kvm.go index 3f6371467cc8..169e1a98a45e 100644 --- a/pkg/drivers/kvm/kvm.go +++ b/pkg/drivers/kvm/kvm.go @@ -1,9 +1,18 @@ -// -// kvm.go -// Copyright (C) 2016 Matt Rickard -// -// Distributed under terms of the All Rights Reserved. license. -// +/* +Copyright 2016 The Kubernetes Authors 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. +*/ package kvm diff --git a/pkg/drivers/kvm/network.go b/pkg/drivers/kvm/network.go index 25e650c59af5..d2f29b8044c5 100644 --- a/pkg/drivers/kvm/network.go +++ b/pkg/drivers/kvm/network.go @@ -1,3 +1,19 @@ +/* +Copyright 2016 The Kubernetes Authors 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. +*/ + package kvm import ( diff --git a/pkg/drivers/kvm/storage.go b/pkg/drivers/kvm/storage.go index e96ecc63e590..d4819357a344 100644 --- a/pkg/drivers/kvm/storage.go +++ b/pkg/drivers/kvm/storage.go @@ -1,3 +1,19 @@ +/* +Copyright 2016 The Kubernetes Authors 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. +*/ + package kvm import (