22 lines
521 B
Text
22 lines
521 B
Text
|
#
|
||
|
# This script will advise the user to use the example configuration
|
||
|
# files included with the package.
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
cat << _EOF
|
||
|
=====================================================================
|
||
|
|
||
|
- Optional example configuration files have been copied to:
|
||
|
/usr/share/examples/screen/
|
||
|
|
||
|
- Copy screenrc to /home/your_user_name/.screenrc for user config
|
||
|
- Copy etcscreenrc to /etc/screenrc for system config
|
||
|
|
||
|
=====================================================================
|
||
|
_EOF
|
||
|
;;
|
||
|
esac
|