From cbb1457d62e60e6860320951e08b24b2c1b4d4c8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Jan 2021 08:31:24 +0100 Subject: Add LICENSE file and license headers Signed-off-by: Matthias Beyer --- src/config/configuration.rs | 10 ++++++++++ src/config/container_config.rs | 10 ++++++++++ src/config/docker_config.rs | 10 ++++++++++ src/config/endpoint_config.rs | 10 ++++++++++ src/config/mod.rs | 10 ++++++++++ src/config/not_validated.rs | 10 ++++++++++ src/config/util.rs | 10 ++++++++++ 7 files changed, 70 insertions(+) (limited to 'src/config') diff --git a/src/config/configuration.rs b/src/config/configuration.rs index 10ee21a..4f0e340 100644 --- a/src/config/configuration.rs +++ b/src/config/configuration.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + use std::ops::Deref; use crate::config::NotValidatedConfiguration; diff --git a/src/config/container_config.rs b/src/config/container_config.rs index e50c46f..a890b8d 100644 --- a/src/config/container_config.rs +++ b/src/config/container_config.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + use getset::CopyGetters; use getset::Getters; use serde::Deserialize; diff --git a/src/config/docker_config.rs b/src/config/docker_config.rs index fcc605f..e427de3 100644 --- a/src/config/docker_config.rs +++ b/src/config/docker_config.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + use getset::{CopyGetters, Getters}; use serde::Deserialize; diff --git a/src/config/endpoint_config.rs b/src/config/endpoint_config.rs index 2ce8d65..1ec5e8c 100644 --- a/src/config/endpoint_config.rs +++ b/src/config/endpoint_config.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + use getset::{CopyGetters, Getters}; use serde::Deserialize; diff --git a/src/config/mod.rs b/src/config/mod.rs index 629b274..372aaae 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + //! The configuration handling code //! //! This module contains all code for the configuration of butido itself. diff --git a/src/config/not_validated.rs b/src/config/not_validated.rs index 809c4e7..87dbc78 100644 --- a/src/config/not_validated.rs +++ b/src/config/not_validated.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + use std::path::PathBuf; use anyhow::anyhow; use anyhow::Result; diff --git a/src/config/util.rs b/src/config/util.rs index fddc292..8f251e8 100644 --- a/src/config/util.rs +++ b/src/config/util.rs @@ -1,3 +1,13 @@ +// +// Copyright (c) 2020-2021 science+computing ag and other contributors +// +// This program and the accompanying materials are made +// available under the terms of the Eclipse Public License 2.0 +// which is available at https://www.eclipse.org/legal/epl-2.0/ +// +// SPDX-License-Identifier: EPL-2.0 +// + pub fn default_progress_format() -> String { String::from("[{elapsed_precise}] ({percent:>3}%): {bar:40.cyan/blue} | {msg}") } -- cgit v1.2.3