From c56701c9153918eca34b273276ec0f7ce37e565b Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Wed, 11 Oct 2023 10:42:27 +0200 Subject: [PATCH] docs(plugins/gcpauidit): add license headers Signed-off-by: Leonardo Grasso --- plugins/gcpaudit/pkg/gcpaudit/config.go | 17 +++++++++++++++++ plugins/gcpaudit/pkg/gcpaudit/extract.go | 17 +++++++++++++++++ plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go | 17 +++++++++++++++++ plugins/gcpaudit/pkg/gcpaudit/init.go | 17 +++++++++++++++++ plugins/gcpaudit/pkg/gcpaudit/source.go | 17 +++++++++++++++++ plugins/gcpaudit/plugin/plugin.go | 17 +++++++++++++++++ 6 files changed, 102 insertions(+) diff --git a/plugins/gcpaudit/pkg/gcpaudit/config.go b/plugins/gcpaudit/pkg/gcpaudit/config.go index 773f758a..e50ff415 100644 --- a/plugins/gcpaudit/pkg/gcpaudit/config.go +++ b/plugins/gcpaudit/pkg/gcpaudit/config.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package gcpaudit import ( diff --git a/plugins/gcpaudit/pkg/gcpaudit/extract.go b/plugins/gcpaudit/pkg/gcpaudit/extract.go index c3fc0164..c850f668 100644 --- a/plugins/gcpaudit/pkg/gcpaudit/extract.go +++ b/plugins/gcpaudit/pkg/gcpaudit/extract.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package gcpaudit import ( diff --git a/plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go b/plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go index 7dd2e0b8..3d46f7ea 100644 --- a/plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go +++ b/plugins/gcpaudit/pkg/gcpaudit/gcpaudit.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package gcpaudit import ( diff --git a/plugins/gcpaudit/pkg/gcpaudit/init.go b/plugins/gcpaudit/pkg/gcpaudit/init.go index e564478c..c6758036 100644 --- a/plugins/gcpaudit/pkg/gcpaudit/init.go +++ b/plugins/gcpaudit/pkg/gcpaudit/init.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package gcpaudit import ( diff --git a/plugins/gcpaudit/pkg/gcpaudit/source.go b/plugins/gcpaudit/pkg/gcpaudit/source.go index b361f208..d0dfc51e 100644 --- a/plugins/gcpaudit/pkg/gcpaudit/source.go +++ b/plugins/gcpaudit/pkg/gcpaudit/source.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package gcpaudit import ( diff --git a/plugins/gcpaudit/plugin/plugin.go b/plugins/gcpaudit/plugin/plugin.go index b75a8844..c9a86267 100644 --- a/plugins/gcpaudit/plugin/plugin.go +++ b/plugins/gcpaudit/plugin/plugin.go @@ -1,3 +1,20 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package main import (