From 5818a90058744213a7b9c2eab3893d10d54a49ff Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:27:44 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- .github/labeler.yml | 3 +++ Formula/consul-aws.rb | 3 +++ Formula/consul-esm.rb | 3 +++ Formula/consul-terraform-sync.rb | 3 +++ Formula/nomad-pack.rb | 3 +++ META.d/_summary.yaml | 3 +++ META.d/data.yml | 3 +++ META.d/tags.yaml | 3 +++ util/formula_templater/config.go | 3 +++ util/formula_templater/config.hcl | 3 +++ util/formula_templater/formula.go | 3 +++ util/formula_templater/formula_test.go | 3 +++ util/formula_templater/main.go | 3 +++ util/formula_templater/shasums.go | 3 +++ util/lambda_trigger/lambda_trigger.go | 3 +++ util/lambda_trigger/lambda_trigger_test.go | 3 +++ util/lambda_trigger/releases.go | 3 +++ .../testdata/github.com_cask_boundary-desktop.rb | 3 +++ .../testdata/github.com_formula_nomad-enterprise.rb | 3 +++ util/lambda_trigger/testdata/github.com_formula_nomad.rb | 3 +++ 20 files changed, 60 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index f0418d0d..84b7d87e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + automerge: - Formula/consul.rb - Formula/consul-enterprise.rb diff --git a/Formula/consul-aws.rb b/Formula/consul-aws.rb index b99fc9a9..3851e2b0 100644 --- a/Formula/consul-aws.rb +++ b/Formula/consul-aws.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class ConsulAws < Formula desc "Consul AWS" homepage "https://github.com/hashicorp/consul-aws" diff --git a/Formula/consul-esm.rb b/Formula/consul-esm.rb index e8a719ad..ff42a80d 100644 --- a/Formula/consul-esm.rb +++ b/Formula/consul-esm.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class ConsulEsm < Formula desc "Consul ESM" homepage "https://github.com/hashicorp/consul-esm" diff --git a/Formula/consul-terraform-sync.rb b/Formula/consul-terraform-sync.rb index 0eeb9530..4dfe43e0 100644 --- a/Formula/consul-terraform-sync.rb +++ b/Formula/consul-terraform-sync.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class ConsulTerraformSync < Formula desc "Consul Terraform Sync" homepage "https://github.com/hashicorp/consul-terraform-sync" diff --git a/Formula/nomad-pack.rb b/Formula/nomad-pack.rb index 522fb76c..5b69b8df 100644 --- a/Formula/nomad-pack.rb +++ b/Formula/nomad-pack.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class NomadPack < Formula desc "Nomad Pack" homepage "https://github.com/hashicorp/nomad-pack" diff --git a/META.d/_summary.yaml b/META.d/_summary.yaml index 0e6d8678..2e0baa1d 100644 --- a/META.d/_summary.yaml +++ b/META.d/_summary.yaml @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + --- schema: 1.1 category: tooling diff --git a/META.d/data.yml b/META.d/data.yml index 6ee8ece6..0cc39048 100644 --- a/META.d/data.yml +++ b/META.d/data.yml @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + _summary: gdpr: exempt: true diff --git a/META.d/tags.yaml b/META.d/tags.yaml index e3ac05c8..d3376f6a 100644 --- a/META.d/tags.yaml +++ b/META.d/tags.yaml @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + --- # excemption required by automation tags: diff --git a/util/formula_templater/config.go b/util/formula_templater/config.go index 38773bef..868cd481 100644 --- a/util/formula_templater/config.go +++ b/util/formula_templater/config.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/formula_templater/config.hcl b/util/formula_templater/config.hcl index 73513623..f8a530fe 100644 --- a/util/formula_templater/config.hcl +++ b/util/formula_templater/config.hcl @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + formula { product = "boundary" name = "Boundary" diff --git a/util/formula_templater/formula.go b/util/formula_templater/formula.go index dd5fac6a..675134e4 100644 --- a/util/formula_templater/formula.go +++ b/util/formula_templater/formula.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/formula_templater/formula_test.go b/util/formula_templater/formula_test.go index a5b482ce..d1bf5a05 100644 --- a/util/formula_templater/formula_test.go +++ b/util/formula_templater/formula_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/formula_templater/main.go b/util/formula_templater/main.go index 2248197e..7fe26e16 100644 --- a/util/formula_templater/main.go +++ b/util/formula_templater/main.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/formula_templater/shasums.go b/util/formula_templater/shasums.go index b925410e..703794be 100644 --- a/util/formula_templater/shasums.go +++ b/util/formula_templater/shasums.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/lambda_trigger/lambda_trigger.go b/util/lambda_trigger/lambda_trigger.go index 9b849379..9e03fd9d 100644 --- a/util/lambda_trigger/lambda_trigger.go +++ b/util/lambda_trigger/lambda_trigger.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/lambda_trigger/lambda_trigger_test.go b/util/lambda_trigger/lambda_trigger_test.go index 67fcd1da..679754b6 100644 --- a/util/lambda_trigger/lambda_trigger_test.go +++ b/util/lambda_trigger/lambda_trigger_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/lambda_trigger/releases.go b/util/lambda_trigger/releases.go index e815729b..69684ff2 100644 --- a/util/lambda_trigger/releases.go +++ b/util/lambda_trigger/releases.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import ( diff --git a/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb b/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb index 70249c5c..a073eaca 100644 --- a/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb +++ b/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + cask "hashicorp-boundary-desktop" do version "1.5.0" sha256 "861a1c0c11b70d8c1897e9cc78ce323b1e0df88217461255b92f09088c9bd15f" diff --git a/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb b/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb index 7492d7be..d848adca 100644 --- a/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb +++ b/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class NomadEnterprise < Formula desc "Nomad Enterprise" homepage "https://www.nomadproject.io/" diff --git a/util/lambda_trigger/testdata/github.com_formula_nomad.rb b/util/lambda_trigger/testdata/github.com_formula_nomad.rb index d922cc57..89921011 100644 --- a/util/lambda_trigger/testdata/github.com_formula_nomad.rb +++ b/util/lambda_trigger/testdata/github.com_formula_nomad.rb @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + class Nomad < Formula desc "Nomad" homepage "https://www.nomadproject.io/"