void-packages/srcpkgs/util-linux-ng/INSTALL

11 lines
228 B
Text
Raw Normal View History

#
# This script fixes group owner in some files.
#
case "${ACTION}" in
post)
# Change group in some files.
bin/chgrp tty usr/bin/write usr/bin/wall
[ $? -eq 0 ] && echo "Setting 'tty' group to wall(1) and write(1)."
;;
esac