Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
The script /etc/autofs/auto.net contains the following line: $SHOWMOUNT | LC_ALL=C sort +0 | \ The "+0" option is an option to sort that has been deprecated for some time and appears to have been removed from sort in coreutils-5.94. The correct line for the new sort (which should also work with old sort) is $SHOWMOUNT | LC_ALL=C sort -k1 | \
After some more research, it seems like the "+0" command line option in old sort really had no effect, so it may be better to just use: $SHOWMOUNT | LC_ALL=C sort | \
*** This bug has been marked as a duplicate of 120403 ***