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

Commit 4b65fb7

Browse files
[COMPLIANCE] Add Copyright and License Headers
1 parent 928a0ad commit 4b65fb7

File tree

24 files changed

+72
-0
lines changed

24 files changed

+72
-0
lines changed

.github/services/go-tests/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.9"
25
services:
36
localstack:

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,

pkg/models/models.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 models
25

36
import (

0 commit comments

Comments
 (0)