From 85103d24ba59e5a2e978d5d6a913f3a1ebc863cb Mon Sep 17 00:00:00 2001 From: Kelsey Hightower Date: Sun, 24 Jul 2016 21:28:00 -0700 Subject: [PATCH] add license headers --- acme.go | 10 ++++++++++ dns.go | 10 ++++++++++ dynamic-certs/certificate-manager.go | 10 ++++++++++ dynamic-certs/main.go | 10 ++++++++++ http.go | 10 ++++++++++ kubernetes.go | 10 ++++++++++ main.go | 10 ++++++++++ processor.go | 10 ++++++++++ 8 files changed, 80 insertions(+) diff --git a/acme.go b/acme.go index cb79f7f..e0a4c2a 100644 --- a/acme.go +++ b/acme.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/dns.go b/dns.go index 22e6d38..55ad627 100644 --- a/dns.go +++ b/dns.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/dynamic-certs/certificate-manager.go b/dynamic-certs/certificate-manager.go index a5361d6..d0843fb 100644 --- a/dynamic-certs/certificate-manager.go +++ b/dynamic-certs/certificate-manager.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/dynamic-certs/main.go b/dynamic-certs/main.go index 72bdb20..c2deda0 100644 --- a/dynamic-certs/main.go +++ b/dynamic-certs/main.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/http.go b/http.go index 96ba225..3f9a5c6 100644 --- a/http.go +++ b/http.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/kubernetes.go b/kubernetes.go index b4507de..503c461 100644 --- a/kubernetes.go +++ b/kubernetes.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/main.go b/main.go index 2c8b1e9..ad984ba 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import ( diff --git a/processor.go b/processor.go index d02027e..243bf32 100644 --- a/processor.go +++ b/processor.go @@ -1,3 +1,13 @@ +// Copyright 2016 Google Inc. 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 main import (