26 lines
653 B
Text
26 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
|