aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/autofs
Commit message (Collapse)AuthorAgeFilesLines
...
* Silence down a warning that doesn't provide any useful information unlessEdward Tomasz Napierala2014-10-151-1/+1
| | | | | | | | | | debug is enabled. MFC after: 1 month Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=273123
* Make automount(8)/automountd(8) treat percent sign as a valid partEdward Tomasz Napierala2014-10-141-1/+1
| | | | | | | | | | of path. It's useful for spaces encoded as %20 as msdosfs labels. Submitted by: glebius@ MFC after: 1 month Notes: svn path=/head/; revision=273107
* Remove call to access(2) which didn't serve any purpose, and make it moreEdward Tomasz Napierala2014-10-071-10/+5
| | | | | | | | | | tolerant to errors. MFC after: 1 month Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=272717
* Fix thinko that, with two map entries like shown below, in that order,Edward Tomasz Napierala2014-09-231-1/+11
| | | | | | | | | | | | | | | made automountd(8) mix them up: trying to access the second one would trigger mount for the first one. foo host:/foo foobar host:/foobar PR: 193584 MFC after: 3 days Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=272037
* Make it possible to quote names in autofs maps using double quotes.Edward Tomasz Napierala2014-09-051-0/+1
| | | | | | | | | | | | | Note that this is a workaround, not a proper solution. If you know lex well, and want to help - please let me know, I'll explain how it should work. PR: 192968 MFC after: 1 week Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=271167
* Fix handling of keys in executable maps. Previously it was broken for keysEdward Tomasz Napierala2014-08-241-11/+26
| | | | | | | | | | | containing whitespace. PR: 192947 MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270454
* Add "nobrowse" option. Previously automountd(8) always behaved as ifEdward Tomasz Napierala2014-08-233-10/+70
| | | | | | | | | | | it was set, now it's conditional. PR: 192862 MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270406
* Don't fail on executable maps that return no entries. This turns uselessEdward Tomasz Napierala2014-08-231-1/+7
| | | | | | | | | | error message into useful one. MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270405
* Use __FBSDID() properly.Edward Tomasz Napierala2014-08-217-7/+21
| | | | | | | | | Suggested by: pluknet@ MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270276
* Remove useless - and buggy, it resulted in spurious warnings in logs - code.Edward Tomasz Napierala2014-08-201-12/+0
| | | | | | | | MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270210
* Bring in the new automounter, similar to what's provided in most otherEdward Tomasz Napierala2014-08-1714-0/+3752
UNIX systems, eg. MacOS X and Solaris. It uses Sun-compatible map format, has proper kernel support, and LDAP integration. There are still a few outstanding problems; they will be fixed shortly. Reviewed by: allanjude@, emaste@, kib@, wblock@ (earlier versions) Phabric: D523 MFC after: 2 weeks Relnotes: yes Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=270096