Add sssd configuration.

This commit is contained in:
Darren 'Tadgy' Austin 2026-04-01 17:01:51 +00:00
commit c140a4e0b2
5 changed files with 212 additions and 187 deletions

2
etc/.gitignore vendored
View file

@ -36,6 +36,7 @@
/issue
/issue.net
/kernel/
/krb5.keytab
/ld.so.*
/libaudit.conf
/lighttpd/
@ -80,6 +81,7 @@
/shells
/skel/
/ssl/
/sssd/
/subgid
/subuid
/sudo.conf

8
etc/default/sssd Normal file
View file

@ -0,0 +1,8 @@
# Defaults for sssd, installed at /etc/default/sssd by the maintainer scripts
# Additional options that are passed to the Daemon.
# This is only used for /etc/init.d/sssd
DAEMON_OPTS="-D --logger=files"
# Where to direct debug output, valid options are 'files', 'journald', 'stderr'.
#DEBUG_LOGGER=--logger=journald

View file

@ -0,0 +1,8 @@
/var/log/sssd/*.log {
missingok
notifempty
sharedscripts
postrotate
kill -HUP `cat /var/run/sssd.pid` > /dev/null 2>&1 || true
endscript
}