void-packages/srcpkgs/util-linux-ng/INSTALL
Juan RP 4cb02d243d util-linux-ng: set tty group to wall(1)/write(1) via INSTALL script.
--HG--
extra : convert_revision : c8023146e2d69937d7f2bce5aaf9f3ca74a95084
2010-04-23 15:31:29 +02:00

11 lines
228 B
Plaintext

#
# 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