Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit 968604f

Browse files
[COMPLIANCE] Add Copyright and License Headers
1 parent 5f98b50 commit 968604f

25 files changed

+75
-0
lines changed

.circleci/bash_env.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
# Copyright (c) HashiCorp, Inc.
3+
# SPDX-License-Identifier: MPL-2.0
4+
25

36
export GIT_COMMIT=$(git rev-parse --short HEAD)
47
export GIT_COMMIT_YEAR=$(git show -s --format=%cd --date=format:%Y HEAD)

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MPL-2.0
3+
14
---
25
version: 2
36

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# syntax = docker.mirror.hashicorp.services/docker/dockerfile:experimental
2+
# Copyright (c) HashiCorp, Inc.
3+
# SPDX-License-Identifier: MPL-2.0
4+
25

36
FROM docker.mirror.hashicorp.services/golang:alpine AS builder
47

cmd/waypoint-hzn/main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MPL-2.0
3+
14
package main
25

36
import (

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MPL-2.0
3+
14
version: '3'
25

36
services:

internal/pkg/golang-petname/debian/update-wordlists.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/sh
2+
# Copyright (c) HashiCorp, Inc.
3+
# SPDX-License-Identifier: MPL-2.0
4+
25

36
# This script only needs to be run by the upstream package maintainer (Dustin Kirkland)
47
# if the upstream petname wordlists change

internal/testsql/testsql.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MPL-2.0
3+
14
// Package testsql provides helpers for working with PostgreSQL databases in
25
// unit tests, from creating per-test DBs to also running the migrations.
36
//

kubernetes/waypoint-hzn.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MPL-2.0
3+
14
apiVersion: apps/v1
25
kind: Deployment
36
metadata:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- Copyright (c) HashiCorp, Inc.
2+
-- SPDX-License-Identifier: MPL-2.0
3+

migrations/20200521162525_initial.up.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
-- Copyright (c) HashiCorp, Inc.
2+
-- SPDX-License-Identifier: MPL-2.0
3+
14
CREATE TABLE IF NOT EXISTS registrations (
25
id SERIAL PRIMARY KEY,
36
account_id bytea NOT NULL UNIQUE,

0 commit comments

Comments
 (0)