summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2023-01-27 16:21:40 +0000
committerTomasz Kramkowski <tomasz@kramkow.ski>2023-01-27 16:28:03 +0000
commit73be1a9adfc1fa04bd4ac0a64317ebea74534155 (patch)
treebea3495042dc1e41bca164bf18758da77b0e7789
parentcbeb9cc9cf4c8a59182df8877626e98be28af474 (diff)
downloadpam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.tar.gz
pam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.tar.xz
pam_usercg_rust-73be1a9adfc1fa04bd4ac0a64317ebea74534155.zip
License and other information
-rw-r--r--Cargo.toml4
-rw-r--r--LICENSE20
-rw-r--r--src/lib.rs3
3 files changed, 27 insertions, 0 deletions
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 <tomasz@kramkow.ski>"]
+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 <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.
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 <tomasz@kramkow.ski>
+// SPDX-License-Identifier: MIT
+
use cap_std::fs::{Dir, OpenOptions};
use pam::constants::{PamFlag, PamResultCode};
use pam::module::{PamHandle, PamHooks};