e762dba18e
--HG-- extra : convert_revision : 8f3db664b145683fd8d5e52048fd890b49baa787
12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
#
|
|
# This script removes the HAL user/group.
|
|
#
|
|
case "$2" in
|
|
pre)
|
|
chroot . userdel hal &>/dev/null
|
|
[ $? -eq 0 ] && echo "Removed HAL system user/group."
|
|
;;
|
|
post)
|
|
;;
|
|
esac
|