4cb02d243d
--HG-- extra : convert_revision : c8023146e2d69937d7f2bce5aaf9f3ca74a95084
10 lines
228 B
Text
10 lines
228 B
Text
#
|
|
# 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
|