From 912048669a42b2196a59a87bc9f380d87074ac78 Mon Sep 17 00:00:00 2001 From: Alexej Disterhoft Date: Sat, 27 Jan 2024 23:47:46 +0100 Subject: [PATCH] chore: typo in SPDX license header --- .github/license-head-template.txt | 2 +- cmd/claim/claim.go | 2 +- cmd/claim/claim_test.go | 2 +- cmd/common/cli.go | 2 +- cmd/common/cli_test.go | 2 +- cmd/common/completion.go | 2 +- cmd/common/completion_test.go | 2 +- cmd/common/doc.go | 2 +- cmd/common/flag.go | 2 +- cmd/common/flag_test.go | 2 +- cmd/common/options.go | 2 +- cmd/common/options_test.go | 2 +- cmd/inspect/inspect.go | 2 +- cmd/inspect/inspect_test.go | 2 +- cmd/root/root.go | 2 +- cmd/root/root_test.go | 2 +- cmd/secret/secret.go | 2 +- cmd/secret/secret_test.go | 2 +- cmd/version/version.go | 2 +- cmd/version/version_test.go | 2 +- cmd/volume/volume.go | 2 +- cmd/volume/volume_test.go | 2 +- main.go | 2 +- pkg/claim/lister.go | 2 +- pkg/claim/lister_test.go | 2 +- pkg/claim/options.go | 2 +- pkg/claim/options_test.go | 2 +- pkg/claim/output.go | 2 +- pkg/claim/output_test.go | 2 +- pkg/claim/sort.go | 2 +- pkg/claim/sort_test.go | 2 +- pkg/secret/lister.go | 2 +- pkg/secret/lister_test.go | 2 +- pkg/secret/options.go | 2 +- pkg/secret/options_test.go | 2 +- pkg/secret/output.go | 2 +- pkg/secret/output_test.go | 2 +- pkg/secret/sort.go | 2 +- pkg/secret/sort_test.go | 2 +- pkg/ticket/ticket.go | 2 +- pkg/ticket/ticket_test.go | 2 +- pkg/types/claim.go | 2 +- pkg/types/claim_test.go | 2 +- pkg/types/doc.go | 2 +- pkg/types/secret.go | 2 +- pkg/types/secret_test.go | 2 +- pkg/types/volume.go | 2 +- pkg/types/volume_test.go | 2 +- pkg/util/client.go | 2 +- pkg/util/client_test.go | 2 +- pkg/util/date.go | 2 +- pkg/util/date_test.go | 2 +- pkg/util/doc.go | 2 +- pkg/util/file.go | 2 +- pkg/util/file_test.go | 2 +- pkg/util/slog.go | 2 +- pkg/util/slog_test.go | 2 +- pkg/util/util.go | 2 +- pkg/util/util_test.go | 2 +- pkg/version/version.go | 2 +- pkg/version/version_test.go | 2 +- pkg/volume/lister.go | 2 +- pkg/volume/lister_test.go | 2 +- pkg/volume/options.go | 2 +- pkg/volume/options_test.go | 2 +- pkg/volume/output.go | 2 +- pkg/volume/output_test.go | 2 +- pkg/volume/sort.go | 2 +- pkg/volume/sort_test.go | 2 +- 69 files changed, 69 insertions(+), 69 deletions(-) diff --git a/.github/license-head-template.txt b/.github/license-head-template.txt index 7077b4d..0fec4cc 100644 --- a/.github/license-head-template.txt +++ b/.github/license-head-template.txt @@ -1,4 +1,4 @@ Copyright (c) 2023 Alexej Disterhoft Use of this source code is governed by a MIT license that can be found in the LICENSE file. -SPX-License-Identifier: MIT +SPDX-License-Identifier: MIT diff --git a/cmd/claim/claim.go b/cmd/claim/claim.go index b9ec81e..945ed61 100644 --- a/cmd/claim/claim.go +++ b/cmd/claim/claim.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package claim provides the claim command for the application. package claim diff --git a/cmd/claim/claim_test.go b/cmd/claim/claim_test.go index 05ed308..5037e63 100644 --- a/cmd/claim/claim_test.go +++ b/cmd/claim/claim_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim_test diff --git a/cmd/common/cli.go b/cmd/common/cli.go index 3fe14be..c3e08a4 100644 --- a/cmd/common/cli.go +++ b/cmd/common/cli.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common diff --git a/cmd/common/cli_test.go b/cmd/common/cli_test.go index 83ed3b0..0e27a23 100644 --- a/cmd/common/cli_test.go +++ b/cmd/common/cli_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common_test diff --git a/cmd/common/completion.go b/cmd/common/completion.go index 4e2c95e..a138f76 100644 --- a/cmd/common/completion.go +++ b/cmd/common/completion.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common diff --git a/cmd/common/completion_test.go b/cmd/common/completion_test.go index ebce56e..1def833 100644 --- a/cmd/common/completion_test.go +++ b/cmd/common/completion_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common_test diff --git a/cmd/common/doc.go b/cmd/common/doc.go index 59bbf76..beb4a62 100644 --- a/cmd/common/doc.go +++ b/cmd/common/doc.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package common contains common functions used by the cmd packages. package common diff --git a/cmd/common/flag.go b/cmd/common/flag.go index c3add1c..20d20e8 100644 --- a/cmd/common/flag.go +++ b/cmd/common/flag.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common diff --git a/cmd/common/flag_test.go b/cmd/common/flag_test.go index 426c7d9..85bc19e 100644 --- a/cmd/common/flag_test.go +++ b/cmd/common/flag_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common_test diff --git a/cmd/common/options.go b/cmd/common/options.go index e6afc88..eff97b1 100644 --- a/cmd/common/options.go +++ b/cmd/common/options.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common diff --git a/cmd/common/options_test.go b/cmd/common/options_test.go index fcc872a..09bd0ab 100644 --- a/cmd/common/options_test.go +++ b/cmd/common/options_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package common_test diff --git a/cmd/inspect/inspect.go b/cmd/inspect/inspect.go index 2c634b0..1329a92 100644 --- a/cmd/inspect/inspect.go +++ b/cmd/inspect/inspect.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package inspect provides the inspect command for the application. package inspect diff --git a/cmd/inspect/inspect_test.go b/cmd/inspect/inspect_test.go index a5f5ccf..2bc00f0 100644 --- a/cmd/inspect/inspect_test.go +++ b/cmd/inspect/inspect_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package inspect_test diff --git a/cmd/root/root.go b/cmd/root/root.go index 73ee9ff..c6bbb43 100644 --- a/cmd/root/root.go +++ b/cmd/root/root.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package root provides the root command for the application. package root diff --git a/cmd/root/root_test.go b/cmd/root/root_test.go index da7d3b8..687599e 100644 --- a/cmd/root/root_test.go +++ b/cmd/root/root_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package root_test diff --git a/cmd/secret/secret.go b/cmd/secret/secret.go index 6846e68..cf2d633 100644 --- a/cmd/secret/secret.go +++ b/cmd/secret/secret.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package secret provides the secret command for the application. package secret diff --git a/cmd/secret/secret_test.go b/cmd/secret/secret_test.go index d899934..a9deb0e 100644 --- a/cmd/secret/secret_test.go +++ b/cmd/secret/secret_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret_test diff --git a/cmd/version/version.go b/cmd/version/version.go index 01e1fdd..98b9454 100644 --- a/cmd/version/version.go +++ b/cmd/version/version.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package version provides the version command for the application. package version diff --git a/cmd/version/version_test.go b/cmd/version/version_test.go index 10070be..8236ef3 100644 --- a/cmd/version/version_test.go +++ b/cmd/version/version_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package version_test diff --git a/cmd/volume/volume.go b/cmd/volume/volume.go index 63233d6..8f394c6 100644 --- a/cmd/volume/volume.go +++ b/cmd/volume/volume.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package volume provides the volume command for the application. package volume diff --git a/cmd/volume/volume_test.go b/cmd/volume/volume_test.go index dc4f6ee..86acdcf 100644 --- a/cmd/volume/volume_test.go +++ b/cmd/volume/volume_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume_test diff --git a/main.go b/main.go index f972b18..8548de7 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package main implements the main entry point for the kubectl-mapr-ticket CLI. It is responsible for // creating the root command and executing it. diff --git a/pkg/claim/lister.go b/pkg/claim/lister.go index a258ac7..b51643d 100644 --- a/pkg/claim/lister.go +++ b/pkg/claim/lister.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package claim implements the persistent volume claim lister. It is responsible for listing all // persistent volume claims in the cluster that are refering to MapR-backed persistent volumes. diff --git a/pkg/claim/lister_test.go b/pkg/claim/lister_test.go index c87d658..00a183b 100644 --- a/pkg/claim/lister_test.go +++ b/pkg/claim/lister_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim_test diff --git a/pkg/claim/options.go b/pkg/claim/options.go index 4ea8113..4f30500 100644 --- a/pkg/claim/options.go +++ b/pkg/claim/options.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim diff --git a/pkg/claim/options_test.go b/pkg/claim/options_test.go index 05ed308..5037e63 100644 --- a/pkg/claim/options_test.go +++ b/pkg/claim/options_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim_test diff --git a/pkg/claim/output.go b/pkg/claim/output.go index 293957f..0ce24e1 100644 --- a/pkg/claim/output.go +++ b/pkg/claim/output.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim diff --git a/pkg/claim/output_test.go b/pkg/claim/output_test.go index 05ed308..5037e63 100644 --- a/pkg/claim/output_test.go +++ b/pkg/claim/output_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim_test diff --git a/pkg/claim/sort.go b/pkg/claim/sort.go index ae294ca..01dea25 100644 --- a/pkg/claim/sort.go +++ b/pkg/claim/sort.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim diff --git a/pkg/claim/sort_test.go b/pkg/claim/sort_test.go index 05ed308..5037e63 100644 --- a/pkg/claim/sort_test.go +++ b/pkg/claim/sort_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package claim_test diff --git a/pkg/secret/lister.go b/pkg/secret/lister.go index 794acb6..e8c6c02 100644 --- a/pkg/secret/lister.go +++ b/pkg/secret/lister.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package secret implements the secret lister. It is responsible for retrieving the list of secrets // containing MapR tickets and enriching them with additional information. diff --git a/pkg/secret/lister_test.go b/pkg/secret/lister_test.go index 3b686bb..9cc2e6a 100644 --- a/pkg/secret/lister_test.go +++ b/pkg/secret/lister_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret_test diff --git a/pkg/secret/options.go b/pkg/secret/options.go index 1e61f63..a55e2f6 100644 --- a/pkg/secret/options.go +++ b/pkg/secret/options.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret diff --git a/pkg/secret/options_test.go b/pkg/secret/options_test.go index d899934..a9deb0e 100644 --- a/pkg/secret/options_test.go +++ b/pkg/secret/options_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret_test diff --git a/pkg/secret/output.go b/pkg/secret/output.go index d348f7f..f1098ca 100644 --- a/pkg/secret/output.go +++ b/pkg/secret/output.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret diff --git a/pkg/secret/output_test.go b/pkg/secret/output_test.go index d899934..a9deb0e 100644 --- a/pkg/secret/output_test.go +++ b/pkg/secret/output_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret_test diff --git a/pkg/secret/sort.go b/pkg/secret/sort.go index 8f02e05..6ff43fd 100644 --- a/pkg/secret/sort.go +++ b/pkg/secret/sort.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret diff --git a/pkg/secret/sort_test.go b/pkg/secret/sort_test.go index d899934..a9deb0e 100644 --- a/pkg/secret/sort_test.go +++ b/pkg/secret/sort_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package secret_test diff --git a/pkg/ticket/ticket.go b/pkg/ticket/ticket.go index e41e0fa..5806046 100644 --- a/pkg/ticket/ticket.go +++ b/pkg/ticket/ticket.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package ticket provides functionality to work with MapR tickets, including parsing tickets either // from their raw string representation or from Kubernetes secrets. diff --git a/pkg/ticket/ticket_test.go b/pkg/ticket/ticket_test.go index a2a4a6c..884e741 100644 --- a/pkg/ticket/ticket_test.go +++ b/pkg/ticket/ticket_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package ticket_test diff --git a/pkg/types/claim.go b/pkg/types/claim.go index 2265284..708c3c2 100644 --- a/pkg/types/claim.go +++ b/pkg/types/claim.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types diff --git a/pkg/types/claim_test.go b/pkg/types/claim_test.go index 251b67d..86d0171 100644 --- a/pkg/types/claim_test.go +++ b/pkg/types/claim_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types_test diff --git a/pkg/types/doc.go b/pkg/types/doc.go index ddd5ec6..da39b71 100644 --- a/pkg/types/doc.go +++ b/pkg/types/doc.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package types defines some common types for Secrets, PersistentVolumes and PersistentVolumeClaims // based on the core Kubernetes types, wrapped into their own types to provide additional diff --git a/pkg/types/secret.go b/pkg/types/secret.go index 8fa2915..2c70465 100644 --- a/pkg/types/secret.go +++ b/pkg/types/secret.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types diff --git a/pkg/types/secret_test.go b/pkg/types/secret_test.go index 10d67df..9afe6b0 100644 --- a/pkg/types/secret_test.go +++ b/pkg/types/secret_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types_test diff --git a/pkg/types/volume.go b/pkg/types/volume.go index 883c13b..58c24e5 100644 --- a/pkg/types/volume.go +++ b/pkg/types/volume.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types diff --git a/pkg/types/volume_test.go b/pkg/types/volume_test.go index 2d322b4..0e44754 100644 --- a/pkg/types/volume_test.go +++ b/pkg/types/volume_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package types_test diff --git a/pkg/util/client.go b/pkg/util/client.go index 22075e7..5cf3374 100644 --- a/pkg/util/client.go +++ b/pkg/util/client.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util diff --git a/pkg/util/client_test.go b/pkg/util/client_test.go index 794d4f5..77beef8 100644 --- a/pkg/util/client_test.go +++ b/pkg/util/client_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util_test diff --git a/pkg/util/date.go b/pkg/util/date.go index ff43889..10324e8 100644 --- a/pkg/util/date.go +++ b/pkg/util/date.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util diff --git a/pkg/util/date_test.go b/pkg/util/date_test.go index 794d4f5..77beef8 100644 --- a/pkg/util/date_test.go +++ b/pkg/util/date_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util_test diff --git a/pkg/util/doc.go b/pkg/util/doc.go index dc28761..3441b74 100644 --- a/pkg/util/doc.go +++ b/pkg/util/doc.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package util provides utility functions for the application. package util diff --git a/pkg/util/file.go b/pkg/util/file.go index a9d547a..b3d7dcf 100644 --- a/pkg/util/file.go +++ b/pkg/util/file.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util diff --git a/pkg/util/file_test.go b/pkg/util/file_test.go index 794d4f5..77beef8 100644 --- a/pkg/util/file_test.go +++ b/pkg/util/file_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util_test diff --git a/pkg/util/slog.go b/pkg/util/slog.go index 193483d..194df21 100644 --- a/pkg/util/slog.go +++ b/pkg/util/slog.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util diff --git a/pkg/util/slog_test.go b/pkg/util/slog_test.go index 794d4f5..77beef8 100644 --- a/pkg/util/slog_test.go +++ b/pkg/util/slog_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util_test diff --git a/pkg/util/util.go b/pkg/util/util.go index c931265..fe4c6fa 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util diff --git a/pkg/util/util_test.go b/pkg/util/util_test.go index e53b575..dbb1336 100644 --- a/pkg/util/util_test.go +++ b/pkg/util/util_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package util_test diff --git a/pkg/version/version.go b/pkg/version/version.go index 82752fe..da56688 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package version diff --git a/pkg/version/version_test.go b/pkg/version/version_test.go index 35f3cbf..4e21569 100644 --- a/pkg/version/version_test.go +++ b/pkg/version/version_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package version_test diff --git a/pkg/volume/lister.go b/pkg/volume/lister.go index 8c4500d..44bff53 100644 --- a/pkg/volume/lister.go +++ b/pkg/volume/lister.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT // Package volume implements a volume lister that lists volumes that are provisioned by one of the // MapR CSI provisioners. It implements functionality to filter volumes by the secret they use and diff --git a/pkg/volume/lister_test.go b/pkg/volume/lister_test.go index f0db868..9e85f6a 100644 --- a/pkg/volume/lister_test.go +++ b/pkg/volume/lister_test.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume_test diff --git a/pkg/volume/options.go b/pkg/volume/options.go index b2e2e61..93cc8d3 100644 --- a/pkg/volume/options.go +++ b/pkg/volume/options.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume diff --git a/pkg/volume/options_test.go b/pkg/volume/options_test.go index dc4f6ee..86acdcf 100644 --- a/pkg/volume/options_test.go +++ b/pkg/volume/options_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume_test diff --git a/pkg/volume/output.go b/pkg/volume/output.go index f57816c..48a917d 100644 --- a/pkg/volume/output.go +++ b/pkg/volume/output.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume diff --git a/pkg/volume/output_test.go b/pkg/volume/output_test.go index dc4f6ee..86acdcf 100644 --- a/pkg/volume/output_test.go +++ b/pkg/volume/output_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume_test diff --git a/pkg/volume/sort.go b/pkg/volume/sort.go index d1733bf..723043e 100644 --- a/pkg/volume/sort.go +++ b/pkg/volume/sort.go @@ -1,7 +1,7 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume diff --git a/pkg/volume/sort_test.go b/pkg/volume/sort_test.go index dc4f6ee..86acdcf 100644 --- a/pkg/volume/sort_test.go +++ b/pkg/volume/sort_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2024 Alexej Disterhoft // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // -// SPX-License-Identifier: MIT +// SPDX-License-Identifier: MIT package volume_test