blob: d8c88a7d549d7bff6fa170177d07c059e43856d1 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# This user is only present on the system to run nscd and does not
# itself own any files. Great care must be taken to never delete a
# user or group that actively controls system resources.
deluser nscd 2>/dev/null
delgroup nscd 2>/dev/null
exit 0
|