bf379a66de
--HG-- extra : convert_revision : 289e7b188e77d8db0f44470cdc5573a928312ee5
25 lines
653 B
Text
25 lines
653 B
Text
#
|
|
# This script will suggest the user to remove services that could
|
|
# interfere with wicd at startup.
|
|
#
|
|
case "${ACTION}" in
|
|
pre)
|
|
;;
|
|
post)
|
|
cat << _EOF
|
|
=====================================================================
|
|
|
|
Please note that wicd does not require to have dhcpcd and/or
|
|
wpa_supplicant services running at boot. If you are using them at
|
|
boot, please disable them before using wicd. You can do that with:
|
|
|
|
$ /etc/init.d/<service> stop
|
|
$ rc-update del <service> default
|
|
|
|
ATTENTION: to make wicd work for your user, it must be a member
|
|
of the 'users' group.
|
|
|
|
=====================================================================
|
|
_EOF
|
|
;;
|
|
esac
|