11 lines
228 B
Text
11 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
|