Initial commit

This commit is contained in:
2026-03-21 12:43:00 -05:00
commit 83bf16823c
438 changed files with 33617 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
set -eu
file=etc/pam.d/system-auth
line='auth optional pam_cap.so'
if [ -f "$file" ]; then
if ! grep -F -x -q "$line" "$file"; then
printf '%s\n' "$line" >> "$file"
fi
else
printf '%s\n' "$line" > "$file"
fi