diff --git a/.gitignore b/.gitignore index 808f462d..bbdb13f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /target +/bin /keys /.idea /.vscode diff --git a/Makefile b/Makefile index 80a65b52..985d513a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ IPAM ?= +##@ Development + .PHONY: all clippy release run clean cli test clippy: @@ -20,7 +22,29 @@ clean: test: clippy cargo test +.PHONY: add-license +add-license: addlicense ## Add license headers to all Rust files. + find . -name '*.rs' -exec "$(ADDLICENSE)" -f hack/license-header.txt {} + + +.PHONY: check-license +check-license: addlicense ## Check license headers in all Rust files. + find . -name '*.rs' -exec "$(ADDLICENSE)" -check -c 'IronCore authors' {} + + include hack/hack.mk cli: cargo build --package feos-cli --release + +##@ Tools + +LOCALBIN ?= $(shell pwd)/bin +$(LOCALBIN): + mkdir -p $(LOCALBIN) + +ADDLICENSE ?= $(LOCALBIN)/addlicense +ADDLICENSE_VERSION ?= v1.1.1 + +.PHONY: addlicense +addlicense: $(ADDLICENSE) ## Download addlicense locally if necessary. +$(ADDLICENSE): $(LOCALBIN) + GOBIN=$(LOCALBIN) go install github.com/google/addlicense@$(ADDLICENSE_VERSION) diff --git a/REUSE.toml b/REUSE.toml index fd618e94..1cf0d6c7 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -24,7 +24,7 @@ path = [ "LICENCES/Apache-2.0.txt" ] precedence = "aggregate" -SPDX-FileCopyrightText = "2023 SAP SE or an SAP affiliate company and IronCore contributors" +SPDX-FileCopyrightText = "SAP SE or an SAP affiliate company and IronCore contributors" SPDX-License-Identifier = "Apache-2.0" [[annotations]] @@ -34,5 +34,5 @@ path = [ "**/README.md", ] precedence = "aggregate" -SPDX-FileCopyrightText = "2023 SAP SE or an SAP affiliate company and IronCore contributors" +SPDX-FileCopyrightText = "SAP SE or an SAP affiliate company and IronCore contributors" SPDX-License-Identifier = "Apache-2.0" diff --git a/cli/src/container_commands.rs b/cli/src/container_commands.rs index 3a04e2d0..95cd816e 100644 --- a/cli/src/container_commands.rs +++ b/cli/src/container_commands.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::{Context, Result}; diff --git a/cli/src/host_commands.rs b/cli/src/host_commands.rs index 050356d4..7a5dc823 100644 --- a/cli/src/host_commands.rs +++ b/cli/src/host_commands.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 mod kernel_stats; diff --git a/cli/src/host_commands/kernel_stats.rs b/cli/src/host_commands/kernel_stats.rs index 38986f15..f2fb34ee 100644 --- a/cli/src/host_commands/kernel_stats.rs +++ b/cli/src/host_commands/kernel_stats.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::{Context, Result}; diff --git a/cli/src/image_commands.rs b/cli/src/image_commands.rs index abb00f99..c2449f2d 100644 --- a/cli/src/image_commands.rs +++ b/cli/src/image_commands.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::{Context, Result}; diff --git a/cli/src/main.rs b/cli/src/main.rs index 5c316436..89b0e508 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::Result; diff --git a/cli/src/vm_commands.rs b/cli/src/vm_commands.rs index f9eaebd8..5b320096 100644 --- a/cli/src/vm_commands.rs +++ b/cli/src/vm_commands.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::{Context, Result}; diff --git a/feos/proto/build.rs b/feos/proto/build.rs index 5f59e326..63d13d08 100644 --- a/feos/proto/build.rs +++ b/feos/proto/build.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 fn main() -> Result<(), Box> { diff --git a/feos/proto/src/lib.rs b/feos/proto/src/lib.rs index 50bb89c8..035ada63 100644 --- a/feos/proto/src/lib.rs +++ b/feos/proto/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod vm_service { diff --git a/feos/services/container-service/build.rs b/feos/services/container-service/build.rs index afe82480..c39c7766 100644 --- a/feos/services/container-service/build.rs +++ b/feos/services/container-service/build.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 fn main() -> Result<(), Box> { diff --git a/feos/services/container-service/migrations/20251016100000_create_containers_table.sql b/feos/services/container-service/migrations/20251016100000_create_containers_table.sql index a7d5812d..41e96de9 100644 --- a/feos/services/container-service/migrations/20251016100000_create_containers_table.sql +++ b/feos/services/container-service/migrations/20251016100000_create_containers_table.sql @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +-- SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors -- SPDX-License-Identifier: Apache-2.0 CREATE TABLE IF NOT EXISTS containers ( diff --git a/feos/services/container-service/src/api.rs b/feos/services/container-service/src/api.rs index cd5da0e2..9fbb315b 100644 --- a/feos/services/container-service/src/api.rs +++ b/feos/services/container-service/src/api.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::Command; diff --git a/feos/services/container-service/src/dispatcher.rs b/feos/services/container-service/src/dispatcher.rs index b9545296..485671f0 100644 --- a/feos/services/container-service/src/dispatcher.rs +++ b/feos/services/container-service/src/dispatcher.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/services/container-service/src/error.rs b/feos/services/container-service/src/error.rs index fe9d7558..b51a56fc 100644 --- a/feos/services/container-service/src/error.rs +++ b/feos/services/container-service/src/error.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::persistence::PersistenceError; diff --git a/feos/services/container-service/src/lib.rs b/feos/services/container-service/src/lib.rs index a2a5472e..db211d9e 100644 --- a/feos/services/container-service/src/lib.rs +++ b/feos/services/container-service/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::ContainerServiceError; diff --git a/feos/services/container-service/src/persistence/mod.rs b/feos/services/container-service/src/persistence/mod.rs index eab95839..0e7d801f 100644 --- a/feos/services/container-service/src/persistence/mod.rs +++ b/feos/services/container-service/src/persistence/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use feos_proto::container_service::{ContainerConfig, ContainerState}; diff --git a/feos/services/container-service/src/persistence/repository.rs b/feos/services/container-service/src/persistence/repository.rs index c9efb23e..5a6b462b 100644 --- a/feos/services/container-service/src/persistence/repository.rs +++ b/feos/services/container-service/src/persistence/repository.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::persistence::{ContainerRecord, ContainerStatus, PersistenceError}; diff --git a/feos/services/container-service/src/runtime/adapter.rs b/feos/services/container-service/src/runtime/adapter.rs index 4f59f907..3f4cc1b7 100644 --- a/feos/services/container-service/src/runtime/adapter.rs +++ b/feos/services/container-service/src/runtime/adapter.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use feos_proto::task_service::{ diff --git a/feos/services/container-service/src/runtime/mod.rs b/feos/services/container-service/src/runtime/mod.rs index e93deafe..608d4b95 100644 --- a/feos/services/container-service/src/runtime/mod.rs +++ b/feos/services/container-service/src/runtime/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod adapter; diff --git a/feos/services/container-service/src/worker.rs b/feos/services/container-service/src/worker.rs index aa97499a..13236515 100644 --- a/feos/services/container-service/src/worker.rs +++ b/feos/services/container-service/src/worker.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/services/host-service/src/api.rs b/feos/services/host-service/src/api.rs index 935a7e24..ca417188 100644 --- a/feos/services/host-service/src/api.rs +++ b/feos/services/host-service/src/api.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::Command; diff --git a/feos/services/host-service/src/dispatcher.rs b/feos/services/host-service/src/dispatcher.rs index 9599a9b4..fe523d55 100644 --- a/feos/services/host-service/src/dispatcher.rs +++ b/feos/services/host-service/src/dispatcher.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{worker, Command, RestartSignal}; diff --git a/feos/services/host-service/src/error.rs b/feos/services/host-service/src/error.rs index 96ea080d..0c93990e 100644 --- a/feos/services/host-service/src/error.rs +++ b/feos/services/host-service/src/error.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use tonic::Status; diff --git a/feos/services/host-service/src/lib.rs b/feos/services/host-service/src/lib.rs index 067df6ed..0877c992 100644 --- a/feos/services/host-service/src/lib.rs +++ b/feos/services/host-service/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::HostError; diff --git a/feos/services/host-service/src/worker/info.rs b/feos/services/host-service/src/worker/info.rs index bf2d950d..b0361f1c 100644 --- a/feos/services/host-service/src/worker/info.rs +++ b/feos/services/host-service/src/worker/info.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::HostError; diff --git a/feos/services/host-service/src/worker/kernel_stats.rs b/feos/services/host-service/src/worker/kernel_stats.rs index 4aec3146..06f8dea9 100644 --- a/feos/services/host-service/src/worker/kernel_stats.rs +++ b/feos/services/host-service/src/worker/kernel_stats.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::HostError; diff --git a/feos/services/host-service/src/worker/mod.rs b/feos/services/host-service/src/worker/mod.rs index 9467456f..893682e3 100644 --- a/feos/services/host-service/src/worker/mod.rs +++ b/feos/services/host-service/src/worker/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod info; diff --git a/feos/services/host-service/src/worker/ops.rs b/feos/services/host-service/src/worker/ops.rs index c0cf711d..ff6ec79a 100644 --- a/feos/services/host-service/src/worker/ops.rs +++ b/feos/services/host-service/src/worker/ops.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{error::HostError, RestartSignal}; diff --git a/feos/services/host-service/src/worker/power.rs b/feos/services/host-service/src/worker/power.rs index b0be448d..86c8854a 100644 --- a/feos/services/host-service/src/worker/power.rs +++ b/feos/services/host-service/src/worker/power.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::HostError; diff --git a/feos/services/host-service/src/worker/time.rs b/feos/services/host-service/src/worker/time.rs index e9942da2..d8afd1a7 100644 --- a/feos/services/host-service/src/worker/time.rs +++ b/feos/services/host-service/src/worker/time.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use chrono::{DateTime, Local, TimeZone}; diff --git a/feos/services/image-service/src/api.rs b/feos/services/image-service/src/api.rs index 2f8ef2c7..23275f09 100644 --- a/feos/services/image-service/src/api.rs +++ b/feos/services/image-service/src/api.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::Command; diff --git a/feos/services/image-service/src/dispatcher.rs b/feos/services/image-service/src/dispatcher.rs index 7bf4c00a..0206ce74 100644 --- a/feos/services/image-service/src/dispatcher.rs +++ b/feos/services/image-service/src/dispatcher.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{Command, OrchestratorCommand}; diff --git a/feos/services/image-service/src/error.rs b/feos/services/image-service/src/error.rs index c3c613aa..d06188bd 100644 --- a/feos/services/image-service/src/error.rs +++ b/feos/services/image-service/src/error.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use oci_distribution::{errors::OciDistributionError, ParseError}; diff --git a/feos/services/image-service/src/filestore.rs b/feos/services/image-service/src/filestore.rs index 4536a5fc..09c8086e 100644 --- a/feos/services/image-service/src/filestore.rs +++ b/feos/services/image-service/src/filestore.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{FileCommand, ImageInfo, PulledImageData, IMAGE_DIR}; diff --git a/feos/services/image-service/src/lib.rs b/feos/services/image-service/src/lib.rs index fb6376a1..ec6099d9 100644 --- a/feos/services/image-service/src/lib.rs +++ b/feos/services/image-service/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::ImageServiceError; diff --git a/feos/services/image-service/src/worker.rs b/feos/services/image-service/src/worker.rs index 2fda22d1..ccc10026 100644 --- a/feos/services/image-service/src/worker.rs +++ b/feos/services/image-service/src/worker.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/services/task-service/src/api.rs b/feos/services/task-service/src/api.rs index 77d3c3a1..4720fe43 100644 --- a/feos/services/task-service/src/api.rs +++ b/feos/services/task-service/src/api.rs @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + use crate::error::TaskError; use crate::Command; use feos_proto::task_service::{ diff --git a/feos/services/task-service/src/dispatcher.rs b/feos/services/task-service/src/dispatcher.rs index d651f911..d0782ff7 100644 --- a/feos/services/task-service/src/dispatcher.rs +++ b/feos/services/task-service/src/dispatcher.rs @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + use crate::error::TaskError; use crate::worker; use crate::{Command, Container, Event, Status, WaitResponse}; diff --git a/feos/services/task-service/src/error.rs b/feos/services/task-service/src/error.rs index 0885b73f..7ec8cd4b 100644 --- a/feos/services/task-service/src/error.rs +++ b/feos/services/task-service/src/error.rs @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + use thiserror::Error; use tonic::Status; diff --git a/feos/services/task-service/src/lib.rs b/feos/services/task-service/src/lib.rs index 6f67e67a..25a3c3eb 100644 --- a/feos/services/task-service/src/lib.rs +++ b/feos/services/task-service/src/lib.rs @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + use crate::error::TaskError; use tokio::sync::oneshot; diff --git a/feos/services/task-service/src/worker.rs b/feos/services/task-service/src/worker.rs index a81e46be..f7835b78 100644 --- a/feos/services/task-service/src/worker.rs +++ b/feos/services/task-service/src/worker.rs @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + use crate::error::TaskError; use crate::Event; use feos_proto::task_service::{ diff --git a/feos/services/vm-service/build.rs b/feos/services/vm-service/build.rs index afe82480..c39c7766 100644 --- a/feos/services/vm-service/build.rs +++ b/feos/services/vm-service/build.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 fn main() -> Result<(), Box> { diff --git a/feos/services/vm-service/src/api.rs b/feos/services/vm-service/src/api.rs index aefc4ab5..5ebffac3 100644 --- a/feos/services/vm-service/src/api.rs +++ b/feos/services/vm-service/src/api.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::Command; diff --git a/feos/services/vm-service/src/dispatcher.rs b/feos/services/vm-service/src/dispatcher.rs index 72afaa98..053280d1 100644 --- a/feos/services/vm-service/src/dispatcher.rs +++ b/feos/services/vm-service/src/dispatcher.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/services/vm-service/src/dispatcher_handlers.rs b/feos/services/vm-service/src/dispatcher_handlers.rs index 47b1ff32..bac430f5 100644 --- a/feos/services/vm-service/src/dispatcher_handlers.rs +++ b/feos/services/vm-service/src/dispatcher_handlers.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/services/vm-service/src/error.rs b/feos/services/vm-service/src/error.rs index cd0659f3..2b5cab54 100644 --- a/feos/services/vm-service/src/error.rs +++ b/feos/services/vm-service/src/error.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::persistence::PersistenceError; diff --git a/feos/services/vm-service/src/lib.rs b/feos/services/vm-service/src/lib.rs index 7e609f72..c3416c52 100644 --- a/feos/services/vm-service/src/lib.rs +++ b/feos/services/vm-service/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::error::VmServiceError; diff --git a/feos/services/vm-service/src/persistence/mod.rs b/feos/services/vm-service/src/persistence/mod.rs index c3861929..b57917e1 100644 --- a/feos/services/vm-service/src/persistence/mod.rs +++ b/feos/services/vm-service/src/persistence/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use feos_proto::vm_service::{VmConfig, VmState}; diff --git a/feos/services/vm-service/src/persistence/repository.rs b/feos/services/vm-service/src/persistence/repository.rs index dba10cfd..d305154e 100644 --- a/feos/services/vm-service/src/persistence/repository.rs +++ b/feos/services/vm-service/src/persistence/repository.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::persistence::{PersistenceError, VmRecord, VmStatus}; diff --git a/feos/services/vm-service/src/vmm/ch_adapter.rs b/feos/services/vm-service/src/vmm/ch_adapter.rs index 9124e891..d7732864 100644 --- a/feos/services/vm-service/src/vmm/ch_adapter.rs +++ b/feos/services/vm-service/src/vmm/ch_adapter.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::{Hypervisor, VmmError}; diff --git a/feos/services/vm-service/src/vmm/mod.rs b/feos/services/vm-service/src/vmm/mod.rs index 42060d5d..6ae63ab9 100644 --- a/feos/services/vm-service/src/vmm/mod.rs +++ b/feos/services/vm-service/src/vmm/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::VmEventWrapper; diff --git a/feos/services/vm-service/src/worker.rs b/feos/services/vm-service/src/worker.rs index d47e1897..fde05038 100644 --- a/feos/services/vm-service/src/worker.rs +++ b/feos/services/vm-service/src/worker.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ diff --git a/feos/src/lib.rs b/feos/src/lib.rs index f9fad508..05eae420 100644 --- a/feos/src/lib.rs +++ b/feos/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 mod setup; diff --git a/feos/src/main.rs b/feos/src/main.rs index cf252516..22e903a7 100644 --- a/feos/src/main.rs +++ b/feos/src/main.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::Result; diff --git a/feos/src/setup.rs b/feos/src/setup.rs index 9b4fa6f8..fdb4f2ef 100644 --- a/feos/src/setup.rs +++ b/feos/src/setup.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::Result; diff --git a/feos/tests/integration/container_tests.rs b/feos/tests/integration/container_tests.rs index ab6d41ed..b2a14a74 100644 --- a/feos/tests/integration/container_tests.rs +++ b/feos/tests/integration/container_tests.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::{ diff --git a/feos/tests/integration/fixtures.rs b/feos/tests/integration/fixtures.rs index cdc05435..66b17e1c 100644 --- a/feos/tests/integration/fixtures.rs +++ b/feos/tests/integration/fixtures.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::Result; diff --git a/feos/tests/integration/host_tests.rs b/feos/tests/integration/host_tests.rs index 83780feb..e4d12003 100644 --- a/feos/tests/integration/host_tests.rs +++ b/feos/tests/integration/host_tests.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::{ensure_server, get_public_clients}; diff --git a/feos/tests/integration/image_tests.rs b/feos/tests/integration/image_tests.rs index 782bc418..44baf491 100644 --- a/feos/tests/integration/image_tests.rs +++ b/feos/tests/integration/image_tests.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::{ensure_server, get_image_service_client, skip_if_ch_binary_missing, TEST_IMAGE_REF}; diff --git a/feos/tests/integration/mod.rs b/feos/tests/integration/mod.rs index 41f3da21..7e7743fb 100644 --- a/feos/tests/integration/mod.rs +++ b/feos/tests/integration/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use anyhow::Result; diff --git a/feos/tests/integration/vm_tests.rs b/feos/tests/integration/vm_tests.rs index 88c8b28c..98b212ed 100644 --- a/feos/tests/integration/vm_tests.rs +++ b/feos/tests/integration/vm_tests.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::fixtures::{verify_vm_socket_cleanup, wait_for_target_state, VmGuard}; diff --git a/feos/tests/integration_tests.rs b/feos/tests/integration_tests.rs index 593c22a6..8748c518 100644 --- a/feos/tests/integration_tests.rs +++ b/feos/tests/integration_tests.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 //! Integration tests for FeOS services diff --git a/feos/utils/build.rs b/feos/utils/build.rs index fcb16a42..a6aac9b2 100644 --- a/feos/utils/build.rs +++ b/feos/utils/build.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use std::process::Command; diff --git a/feos/utils/src/feos_logger/mod.rs b/feos/utils/src/feos_logger/mod.rs index 232019b0..99d7e609 100644 --- a/feos/utils/src/feos_logger/mod.rs +++ b/feos/utils/src/feos_logger/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use chrono::{DateTime, Utc}; diff --git a/feos/utils/src/filesystem/fsmount.rs b/feos/utils/src/filesystem/fsmount.rs index da47e4dc..7ea1ae14 100644 --- a/feos/utils/src/filesystem/fsmount.rs +++ b/feos/utils/src/filesystem/fsmount.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use libc::{syscall, SYS_fsconfig, SYS_fsmount, SYS_fsopen}; diff --git a/feos/utils/src/filesystem/mod.rs b/feos/utils/src/filesystem/mod.rs index a13d7470..020874b4 100644 --- a/feos/utils/src/filesystem/mod.rs +++ b/feos/utils/src/filesystem/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 mod fsmount; diff --git a/feos/utils/src/filesystem/mount.rs b/feos/utils/src/filesystem/mount.rs index 7132edd8..1b8ad7e5 100644 --- a/feos/utils/src/filesystem/mount.rs +++ b/feos/utils/src/filesystem/mount.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use log::debug; diff --git a/feos/utils/src/filesystem/move.rs b/feos/utils/src/filesystem/move.rs index 6809ef8f..60b818e6 100644 --- a/feos/utils/src/filesystem/move.rs +++ b/feos/utils/src/filesystem/move.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::fsmount::{fsconfig, fsmount, fsopen, FSCONFIG_CMD_CREATE, FSCONFIG_SET_STRING}; diff --git a/feos/utils/src/host/info.rs b/feos/utils/src/host/info.rs index b874e759..da945f37 100644 --- a/feos/utils/src/host/info.rs +++ b/feos/utils/src/host/info.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use log::info; diff --git a/feos/utils/src/host/memory.rs b/feos/utils/src/host/memory.rs index c148d7c1..030156ba 100644 --- a/feos/utils/src/host/memory.rs +++ b/feos/utils/src/host/memory.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use log::{info, warn}; diff --git a/feos/utils/src/host/mod.rs b/feos/utils/src/host/mod.rs index d28e6a86..bc253b13 100644 --- a/feos/utils/src/host/mod.rs +++ b/feos/utils/src/host/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod info; diff --git a/feos/utils/src/host/power.rs b/feos/utils/src/host/power.rs index 24a6fb39..46a48843 100644 --- a/feos/utils/src/host/power.rs +++ b/feos/utils/src/host/power.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use nix::sys::reboot::RebootMode; diff --git a/feos/utils/src/lib.rs b/feos/utils/src/lib.rs index 88428080..8bce2cf7 100644 --- a/feos/utils/src/lib.rs +++ b/feos/utils/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod feos_logger; diff --git a/feos/utils/src/network/dhcpv6.rs b/feos/utils/src/network/dhcpv6.rs index 09e7bd85..410bc6ac 100644 --- a/feos/utils/src/network/dhcpv6.rs +++ b/feos/utils/src/network/dhcpv6.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use dhcproto::v6::*; diff --git a/feos/utils/src/network/mod.rs b/feos/utils/src/network/mod.rs index e0df00a9..3fb9a7db 100644 --- a/feos/utils/src/network/mod.rs +++ b/feos/utils/src/network/mod.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 pub mod dhcpv6; diff --git a/feos/utils/src/network/utils.rs b/feos/utils/src/network/utils.rs index 0741d5d3..97d542b8 100644 --- a/feos/utils/src/network/utils.rs +++ b/feos/utils/src/network/utils.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 use super::dhcpv6::*; diff --git a/feos/utils/src/version.rs b/feos/utils/src/version.rs index 42e71d0d..daf3b116 100644 --- a/feos/utils/src/version.rs +++ b/feos/utils/src/version.rs @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 #[cfg(not(feature = "git-version"))] diff --git a/go/feos-go/gen/feos/container/v1/container.pb.go b/go/feos-go/gen/feos/container/v1/container.pb.go index 3cbdbabe..be310982 100644 --- a/go/feos-go/gen/feos/container/v1/container.pb.go +++ b/go/feos-go/gen/feos/container/v1/container.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/container/v1/container_grpc.pb.go b/go/feos-go/gen/feos/container/v1/container_grpc.pb.go index f731b33e..80562d6f 100644 --- a/go/feos-go/gen/feos/container/v1/container_grpc.pb.go +++ b/go/feos-go/gen/feos/container/v1/container_grpc.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/host/v1/host.pb.go b/go/feos-go/gen/feos/host/v1/host.pb.go index c187562e..daa36d84 100644 --- a/go/feos-go/gen/feos/host/v1/host.pb.go +++ b/go/feos-go/gen/feos/host/v1/host.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/host/v1/host_grpc.pb.go b/go/feos-go/gen/feos/host/v1/host_grpc.pb.go index 8aa1f6a9..acffc131 100644 --- a/go/feos-go/gen/feos/host/v1/host_grpc.pb.go +++ b/go/feos-go/gen/feos/host/v1/host_grpc.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/image/vmm/api/v1/image.pb.go b/go/feos-go/gen/feos/image/vmm/api/v1/image.pb.go index 94ad3bf4..209fc6e5 100644 --- a/go/feos-go/gen/feos/image/vmm/api/v1/image.pb.go +++ b/go/feos-go/gen/feos/image/vmm/api/v1/image.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/image/vmm/api/v1/image_grpc.pb.go b/go/feos-go/gen/feos/image/vmm/api/v1/image_grpc.pb.go index aeef0b24..eb8a3ca2 100644 --- a/go/feos-go/gen/feos/image/vmm/api/v1/image_grpc.pb.go +++ b/go/feos-go/gen/feos/image/vmm/api/v1/image_grpc.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/task/v1/task.pb.go b/go/feos-go/gen/feos/task/v1/task.pb.go index b7597e3c..442a095d 100644 --- a/go/feos-go/gen/feos/task/v1/task.pb.go +++ b/go/feos-go/gen/feos/task/v1/task.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/task/v1/task_grpc.pb.go b/go/feos-go/gen/feos/task/v1/task_grpc.pb.go index 923375ec..9e142d93 100644 --- a/go/feos-go/gen/feos/task/v1/task_grpc.pb.go +++ b/go/feos-go/gen/feos/task/v1/task_grpc.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/vm/vmm/api/v1/vm.pb.go b/go/feos-go/gen/feos/vm/vmm/api/v1/vm.pb.go index 242f41af..78fff59f 100644 --- a/go/feos-go/gen/feos/vm/vmm/api/v1/vm.pb.go +++ b/go/feos-go/gen/feos/vm/vmm/api/v1/vm.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: diff --git a/go/feos-go/gen/feos/vm/vmm/api/v1/vm_grpc.pb.go b/go/feos-go/gen/feos/vm/vmm/api/v1/vm_grpc.pb.go index 05b7a02e..89b78fd0 100644 --- a/go/feos-go/gen/feos/vm/vmm/api/v1/vm_grpc.pb.go +++ b/go/feos-go/gen/feos/vm/vmm/api/v1/vm_grpc.pb.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: diff --git a/go/feos-go/hack/generate-proto.sh b/go/feos-go/hack/generate-proto.sh index b45f8221..fffa81f6 100755 --- a/go/feos-go/hack/generate-proto.sh +++ b/go/feos-go/hack/generate-proto.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +# SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors # SPDX-License-Identifier: Apache-2.0 set -e diff --git a/hack/license-header.txt b/hack/license-header.txt new file mode 100644 index 00000000..6d56df4d --- /dev/null +++ b/hack/license-header.txt @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and IronCore contributors +SPDX-License-Identifier: Apache-2.0