From 73be1a9adfc1fa04bd4ac0a64317ebea74534155 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Fri, 27 Jan 2023 16:21:40 +0000 Subject: License and other information --- Cargo.toml | 4 ++++ LICENSE | 20 ++++++++++++++++++++ src/lib.rs | 3 +++ 3 files changed, 27 insertions(+) create mode 100644 LICENSE diff --git a/Cargo.toml b/Cargo.toml index e56e279..0983fe5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,10 @@ name = "pam_usercg" version = "0.1.0" edition = "2021" +rust-version = "1.67" +description = "PAM module to put user sessions in user-specific v2 cgroups" +authors = ["Tomasz Kramkowski "] +license = "MIT" [lib] name = "pam_usercg" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c71337f --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +Copyright 2023 Tomasz Kramkowski + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/lib.rs b/src/lib.rs index bd7c949..2a1f0ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,6 @@ +// Copyright (C) 2023 Tomasz Kramkowski +// SPDX-License-Identifier: MIT + use cap_std::fs::{Dir, OpenOptions}; use pam::constants::{PamFlag, PamResultCode}; use pam::module::{PamHandle, PamHooks}; -- cgit v1.2.3-54-g00ecf