From 0f9d7edd6218361953dfd31870557139f4615aa0 Mon Sep 17 00:00:00 2001 From: Swann Perarnau Date: Mon, 25 Feb 2019 09:25:05 -0600 Subject: [PATCH] [doc] add License to repository Self-explanatory. --- AUTHORS | 3 ++ CONTRIBUTING.markdown | 55 ++++++++++++++++++++++++++++++++++ LICENSE | 26 ++++++++++++++++ src/acl.cpp | 10 +++++++ src/acl.hpp | 10 +++++++ src/aggregatelogger.cpp | 10 +++++++ src/aggregatelogger.hpp | 10 +++++++ src/argo_container.cpp | 10 +++++++ src/argo_container.hpp | 10 +++++++ src/argo_nodeos_config.cpp | 10 +++++++ src/common.hpp | 10 +++++++ src/container_manager.cpp | 10 +++++++ src/container_manager.hpp | 10 +++++++ src/defaults.hpp | 10 +++++++ src/filelogger.cpp | 10 +++++++ src/filelogger.hpp | 10 +++++++ src/headers.hpp | 10 +++++++ src/ilogger.cpp | 10 +++++++ src/ilogger.hpp | 10 +++++++ src/int_list_parser.cpp | 10 +++++++ src/int_list_parser.hpp | 10 +++++++ src/iparser.cpp | 11 ++++++- src/iparser.hpp | 10 +++++++ src/iresource_controller.hpp | 10 +++++++ src/log_option_parser.cpp | 10 +++++++ src/log_option_parser.hpp | 10 +++++++ src/nodeos_exceptions.hpp | 10 +++++++ src/resource_locker.cpp | 10 +++++++ src/resource_locker.hpp | 10 +++++++ src/resource_ownership.hpp | 10 +++++++ src/resource_ownership_set.hpp | 10 +++++++ src/resource_type.hpp | 10 +++++++ src/stderrlogger.cpp | 10 +++++++ src/stderrlogger.hpp | 10 +++++++ src/string_parser.cpp | 10 +++++++ src/string_parser.hpp | 10 +++++++ src/syslogger.cpp | 10 +++++++ src/syslogger.hpp | 10 +++++++ src/trace.cpp | 10 +++++++ src/trace.hpp | 10 +++++++ src/utils.cpp | 10 +++++++ src/utils.hpp | 10 +++++++ 42 files changed, 474 insertions(+), 1 deletion(-) create mode 100644 AUTHORS create mode 100644 CONTRIBUTING.markdown create mode 100644 LICENSE diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..9af7026 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Judicael Zounmevo +Swann Perarnau +Kamil Iskra diff --git a/CONTRIBUTING.markdown b/CONTRIBUTING.markdown new file mode 100644 index 0000000..85ec0ed --- /dev/null +++ b/CONTRIBUTING.markdown @@ -0,0 +1,55 @@ +Contributing to The Project +=========================== + +The following is a set of guidelines for contributing to this project. These +are guidelines, not rules, so use your best judgement and feel free to propose +changes. + +## Commit Messages Styleguide + +- use present tense, imperative mood +- reference issues and merge requests +- you can use [Gitlab Flavored Markdown](https://docs.gitlab.com/ee/user/markdown.html) + +If you want some help, here is a commit template that you can add to your git +configuration. Save it to a `my-commit-template.txt` file and use `git config +commit.template my-config-template.txt` to use it automatically. + +``` +# [type] If applied, this commit will... ---->| + + +# Why this change + +# Links or keys to tickets and others +# --- COMMIT END --- +# Type can be +# feature +# fix (bug fix) +# doc (changes to documentation) +# style (formatting, missing semi colons, etc; no code change) +# refactor (refactoring production code) +# test (adding missing tests, refactoring tests; no production code change) +# -------------------- +# Remember to +# Separate subject from body with a blank line +# Limit the subject line to 50 characters +# Capitalize the subject line +# Do not end the subject line with a period +# Use the imperative mood in the subject line +# Wrap the body at 72 characters +# Use the body to explain what and why vs. how +# Can use multiple lines with "-" for bullet points in body +# -------------------- +``` + +## Signoff on Contributions: + +The project uses the [Developer Certificate of +Origin](https://developercertificate.org/) for copyright and license +management. We ask that you sign-off all of your commits as certification that +you have the rights to submit this work under the license of the project (in +the `LICENSE` file) and that you agree to the DCO. + +To signoff commits, use: `git commit --signoff`. +To signoff a branch after the fact: `git rebase --signoff` diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fbeee80 --- /dev/null +++ b/LICENSE @@ -0,0 +1,26 @@ +Copyright (c) 2019, UChicago Argonne, LLC. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/acl.cpp b/src/acl.cpp index 95d3a6e..48d76f9 100644 --- a/src/acl.cpp +++ b/src/acl.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "acl.hpp" #include "utils.hpp" #include diff --git a/src/acl.hpp b/src/acl.hpp index b55e2dd..770d970 100644 --- a/src/acl.hpp +++ b/src/acl.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __ACL_H__ #define __ACL_H__ diff --git a/src/aggregatelogger.cpp b/src/aggregatelogger.cpp index 357fae9..43b9920 100644 --- a/src/aggregatelogger.cpp +++ b/src/aggregatelogger.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "aggregatelogger.hpp" Aggregatelogger::Aggregatelogger(uid_t ruid): diff --git a/src/aggregatelogger.hpp b/src/aggregatelogger.hpp index b04c62b..3d0e3a8 100644 --- a/src/aggregatelogger.hpp +++ b/src/aggregatelogger.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __AGGREGATELOGGER_HPP__ #define __AGGREGATELOGGER_HPP__ #include "ilogger.hpp" diff --git a/src/argo_container.cpp b/src/argo_container.cpp index a3e796b..e60daef 100644 --- a/src/argo_container.cpp +++ b/src/argo_container.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "argo_container.hpp" #include #include diff --git a/src/argo_container.hpp b/src/argo_container.hpp index f696c56..5852f17 100644 --- a/src/argo_container.hpp +++ b/src/argo_container.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __COMPUTE_CONTAINER_HPP__ #define __COMPUTE_CONTAINER_HPP__ diff --git a/src/argo_nodeos_config.cpp b/src/argo_nodeos_config.cpp index 917f7a5..82d5e6d 100644 --- a/src/argo_nodeos_config.cpp +++ b/src/argo_nodeos_config.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "headers.hpp" #include "common.hpp" #include "aggregatelogger.hpp" diff --git a/src/common.hpp b/src/common.hpp index dfeb710..fa2001c 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __COMMON_HPP__ #define __COMMON_HPP__ diff --git a/src/container_manager.cpp b/src/container_manager.cpp index 349d2a1..7421a6f 100644 --- a/src/container_manager.cpp +++ b/src/container_manager.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "container_manager.hpp" #include "common.hpp" #include diff --git a/src/container_manager.hpp b/src/container_manager.hpp index c62cc35..a160778 100644 --- a/src/container_manager.hpp +++ b/src/container_manager.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __CONTAINER_MANAGER_HPP__ #define __CONTAINER_MANAGER_HPP__ #include "utils.hpp" diff --git a/src/defaults.hpp b/src/defaults.hpp index a99b260..120755f 100644 --- a/src/defaults.hpp +++ b/src/defaults.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __DEFAULTS_HPP__ #define __DEFAULTS_HPP__ diff --git a/src/filelogger.cpp b/src/filelogger.cpp index bc8b5db..2554116 100644 --- a/src/filelogger.cpp +++ b/src/filelogger.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "filelogger.hpp" #include "common.hpp" #include diff --git a/src/filelogger.hpp b/src/filelogger.hpp index f618ca3..ec1e4e4 100644 --- a/src/filelogger.hpp +++ b/src/filelogger.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __FILELOGGER_HPP__ #define __FILELOGGER_HPP__ #include "ilogger.hpp" diff --git a/src/headers.hpp b/src/headers.hpp index 1eb163e..8e06554 100644 --- a/src/headers.hpp +++ b/src/headers.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __HEADERS_HPP__ #define __HEADERS_HPP__ diff --git a/src/ilogger.cpp b/src/ilogger.cpp index f76e57c..8c7cf51 100644 --- a/src/ilogger.cpp +++ b/src/ilogger.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "ilogger.hpp" #include "utils.hpp" #include diff --git a/src/ilogger.hpp b/src/ilogger.hpp index 974acf0..09ab1bb 100644 --- a/src/ilogger.hpp +++ b/src/ilogger.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __LOGGER_HPP__ #define __LOGGER_HPP__ diff --git a/src/int_list_parser.cpp b/src/int_list_parser.cpp index 2bbaf93..cb2f975 100644 --- a/src/int_list_parser.cpp +++ b/src/int_list_parser.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "int_list_parser.hpp" #include "utils.hpp" #include diff --git a/src/int_list_parser.hpp b/src/int_list_parser.hpp index 5735c43..fee46e0 100644 --- a/src/int_list_parser.hpp +++ b/src/int_list_parser.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __INT_LIST_PARSER_HPP__ #define __INT_LIST_PARSER_HPP__ #include diff --git a/src/iparser.cpp b/src/iparser.cpp index dcd086e..de818d8 100644 --- a/src/iparser.cpp +++ b/src/iparser.cpp @@ -1 +1,10 @@ -#include "iparser.hpp" +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + diff --git a/src/iparser.hpp b/src/iparser.hpp index 7019b94..2380ddd 100644 --- a/src/iparser.hpp +++ b/src/iparser.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __IPARSER_HPP__ #define __IPARSER_HPP__ diff --git a/src/iresource_controller.hpp b/src/iresource_controller.hpp index 657a392..e5e77fa 100644 --- a/src/iresource_controller.hpp +++ b/src/iresource_controller.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __IRESOURCE_CONTROLLER_HPP__ #define __IRESOURCE_CONTROLLER_HPP__ diff --git a/src/log_option_parser.cpp b/src/log_option_parser.cpp index 8627245..403a7b5 100644 --- a/src/log_option_parser.cpp +++ b/src/log_option_parser.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "log_option_parser.hpp" #include "utils.hpp" diff --git a/src/log_option_parser.hpp b/src/log_option_parser.hpp index f717456..e343426 100644 --- a/src/log_option_parser.hpp +++ b/src/log_option_parser.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __LOG_OPTION_PARSER_HPP__ #define __LOG_OPTION_PARSER_HPP__ diff --git a/src/nodeos_exceptions.hpp b/src/nodeos_exceptions.hpp index d5b3c4c..5904fca 100644 --- a/src/nodeos_exceptions.hpp +++ b/src/nodeos_exceptions.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __NODEOS_EXCEPTIONS_HPP__ #define __NODEOS_EXCEPTIONS_HPP__ diff --git a/src/resource_locker.cpp b/src/resource_locker.cpp index cf1b4e4..0b2b152 100644 --- a/src/resource_locker.cpp +++ b/src/resource_locker.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "resource_locker.hpp" #include "utils.hpp" #include "common.hpp" diff --git a/src/resource_locker.hpp b/src/resource_locker.hpp index fd36121..8d80592 100644 --- a/src/resource_locker.hpp +++ b/src/resource_locker.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __RESOURCE_LOCKER_HPP__ #define __RESOURCE_LOCKER_HPP__ diff --git a/src/resource_ownership.hpp b/src/resource_ownership.hpp index ecd44d4..4a95824 100644 --- a/src/resource_ownership.hpp +++ b/src/resource_ownership.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __RESOURCE_OWNERSHIP_HPP__ #define __RESOURCE_OWNERSHIP_HPP__ #include "utils.hpp" diff --git a/src/resource_ownership_set.hpp b/src/resource_ownership_set.hpp index acfc68a..a79fb8d 100644 --- a/src/resource_ownership_set.hpp +++ b/src/resource_ownership_set.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __RESOURCE_OWNERSHIP_SET_HPP__ #define __RESOURCE_OWNERSHIP_SET_HPP__ #include "resource_ownership.hpp" diff --git a/src/resource_type.hpp b/src/resource_type.hpp index 8a2e552..4b6fdcf 100644 --- a/src/resource_type.hpp +++ b/src/resource_type.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __RESOURCE_TYPE_CPP_H__ #define __RESOURCE_TYPE_CPP_H__ diff --git a/src/stderrlogger.cpp b/src/stderrlogger.cpp index 6678ad7..6f3cb9d 100644 --- a/src/stderrlogger.cpp +++ b/src/stderrlogger.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "stderrlogger.hpp" #include "common.hpp" #include diff --git a/src/stderrlogger.hpp b/src/stderrlogger.hpp index a9a1b76..20fc218 100644 --- a/src/stderrlogger.hpp +++ b/src/stderrlogger.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __STDERRLOGGER_HPP__ #define __STDERRLOGGER_HPP__ #include "ilogger.hpp" diff --git a/src/string_parser.cpp b/src/string_parser.cpp index 96ea1d1..8b5eb46 100644 --- a/src/string_parser.cpp +++ b/src/string_parser.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "string_parser.hpp" #include "utils.hpp" #include diff --git a/src/string_parser.hpp b/src/string_parser.hpp index ba60714..f53b572 100644 --- a/src/string_parser.hpp +++ b/src/string_parser.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __STRING_PARSER_HPP__ #define __STRING_PARSER_HPP__ diff --git a/src/syslogger.cpp b/src/syslogger.cpp index 047d3c4..10a4ac1 100644 --- a/src/syslogger.cpp +++ b/src/syslogger.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "syslogger.hpp" #include #include "utils.hpp" diff --git a/src/syslogger.hpp b/src/syslogger.hpp index dc812e2..fec7a2b 100644 --- a/src/syslogger.hpp +++ b/src/syslogger.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __SYSLOGGER_HPP__ #define __SYSLOGGER_HPP__ #include "ilogger.hpp" diff --git a/src/trace.cpp b/src/trace.cpp index cf837ea..4cd3a51 100644 --- a/src/trace.cpp +++ b/src/trace.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "trace.hpp" #include bitmask_t __trace_mask = 0; diff --git a/src/trace.hpp b/src/trace.hpp index c053bf1..3feb5eb 100644 --- a/src/trace.hpp +++ b/src/trace.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __TRACE_HPP__ #define __TRACE_HPP__ #include diff --git a/src/utils.cpp b/src/utils.cpp index 59f11e7..0576f72 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #include "utils.hpp" #include diff --git a/src/utils.hpp b/src/utils.hpp index 664b269..ebfded7 100644 --- a/src/utils.hpp +++ b/src/utils.hpp @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright 2019 UChicago Argonne, LLC. + * (c.f. AUTHORS, LICENSE) + * + * This file is part of the Argo containers project. + * For more info, see https://xgitlab.cels.anl.gov/argo/containers + * + * SPDX-License-Identifier: BSD-3-Clause +*******************************************************************************/ + #ifndef __UTILS_CPP_H__ #define __UTILS_CPP_H__ #include -- 2.26.2