diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-01-27 16:21:40 +0000 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-01-27 16:28:03 +0000 |
commit | 73be1a9adfc1fa04bd4ac0a64317ebea74534155 (patch) | |
tree | bea3495042dc1e41bca164bf18758da77b0e7789 | |
parent | cbeb9cc9cf4c8a59182df8877626e98be28af474 (diff) | |
download | pam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.tar.gz pam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.tar.xz pam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.zip |
License and other information
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | LICENSE | 20 | ||||
-rw-r--r-- | src/lib.rs | 3 |
3 files changed, 27 insertions, 0 deletions
@@ -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 <tomasz@kramkow.ski>"] +license = "MIT" [lib] name = "pam_usercg" @@ -0,0 +1,20 @@ +Copyright 2023 Tomasz Kramkowski <tomasz@kramkow.ski> + +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. @@ -1,3 +1,6 @@ +// Copyright (C) 2023 Tomasz Kramkowski <tomasz@kramkow.ski> +// SPDX-License-Identifier: MIT + use cap_std::fs::{Dir, OpenOptions}; use pam::constants::{PamFlag, PamResultCode}; use pam::module::{PamHandle, PamHooks}; |