diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
commit | 7047f830acfe84e840403e69df161b9d51aca673 (patch) | |
tree | e444273e3412e677c74958468f274ed51f1aea4e /files/usr/local/libexec/pam-create-local-homedir.common | |
parent | 21e42dd2db8d987dbd08a3254ff0719d577c005e (diff) | |
download | infrastructure-7047f830acfe84e840403e69df161b9d51aca673.tar.gz |
fixes for kde6 upgrade
Diffstat (limited to 'files/usr/local/libexec/pam-create-local-homedir.common')
-rw-r--r-- | files/usr/local/libexec/pam-create-local-homedir.common | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/files/usr/local/libexec/pam-create-local-homedir.common b/files/usr/local/libexec/pam-create-local-homedir.common index 2d30d06..b1ecef5 100644 --- a/files/usr/local/libexec/pam-create-local-homedir.common +++ b/files/usr/local/libexec/pam-create-local-homedir.common @@ -1,3 +1,4 @@ #!/bin/sh install -o "$PAM_USER" -g "$PAM_USER" -m 0700 -d "/usr/local/home/${PAM_USER}" +install -o "$PAM_USER" -g "$PAM_USER" -l s "/usr/local/home/${PAM_USER}" "/home/${PAM_USER}/localdisk" |