16 lines
408 B
Plaintext
16 lines
408 B
Plaintext
|
case ${ACTION} in
|
||
|
post)
|
||
|
cat <<_EOF
|
||
|
=====================================================================
|
||
|
Please note to enable nss-myhostname properly, some changes are
|
||
|
required to /etc/nsswitch.conf:
|
||
|
|
||
|
hosts: files dns myhostname
|
||
|
|
||
|
Note that myhostname must appear the last one, as fallback for the
|
||
|
other services.
|
||
|
=====================================================================
|
||
|
_EOF
|
||
|
;;
|
||
|
esac
|