From 9353b1cbb268f973f246e8db3d212b7d8a7347b8 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:20:30 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- example/agent.hcl | 3 +++ example/example.nomad | 3 +++ hello/driver.go | 3 +++ hello/handle.go | 3 +++ hello/state.go | 3 +++ main.go | 3 +++ 6 files changed, 18 insertions(+) diff --git a/example/agent.hcl b/example/agent.hcl index c9dd670..0baae0e 100644 --- a/example/agent.hcl +++ b/example/agent.hcl @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + log_level = "TRACE" plugin "hello-driver" { diff --git a/example/example.nomad b/example/example.nomad index cf7e73c..6742c90 100644 --- a/example/example.nomad +++ b/example/example.nomad @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + job "example" { datacenters = ["dc1"] type = "batch" diff --git a/hello/driver.go b/hello/driver.go index 312cb76..71bac54 100644 --- a/hello/driver.go +++ b/hello/driver.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package hello import ( diff --git a/hello/handle.go b/hello/handle.go index 6dfb976..08b798d 100644 --- a/hello/handle.go +++ b/hello/handle.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package hello import ( diff --git a/hello/state.go b/hello/state.go index 30f10d7..b354f2d 100644 --- a/hello/state.go +++ b/hello/state.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package hello import ( diff --git a/main.go b/main.go index 44781ae..b21fde2 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package main import (