28 lines
626 B
Plaintext
28 lines
626 B
Plaintext
|
#
|
||
|
# This script will advise the user to read the license for Chrome
|
||
|
# and to re-login to have environment variables set properly
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
cat << _EOF
|
||
|
=====================================================================
|
||
|
|
||
|
- The Pepper Adobe Flashplayer package is licensed software.
|
||
|
|
||
|
You MUST read and agree to the license stored in
|
||
|
/usr/share/licenses/chromium-pepper-flash/license.html
|
||
|
before using it.
|
||
|
|
||
|
- Please re-login to update CHROME_FLAGS or re-source
|
||
|
/etc/profile:
|
||
|
|
||
|
$ source /etc/profile
|
||
|
|
||
|
=====================================================================
|
||
|
_EOF
|
||
|
;;
|
||
|
esac
|
||
|
|