mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
nixos/users-groups: fix broken linger
This commit is contained in:
parent
c2684b4d2d
commit
564c3749d9
@ -704,8 +704,9 @@ in {
|
||||
in stringAfter [ "users" ] ''
|
||||
if [ -e ${lingerDir} ] ; then
|
||||
cd ${lingerDir}
|
||||
for user in ${lingerDir}/*; do
|
||||
if ! id "$user" >/dev/null 2>&1; then
|
||||
for user in $(ls); do
|
||||
if ! id "$user" >/dev/null; then
|
||||
echo "Removing linger for deleted user $user"
|
||||
rm --force -- "$user"
|
||||
fi
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user