Documentation
This document describes some standard configuration maps for autofs that are convenient for everyday use. It is a cook book for building your own configuration files.
Together with this documentation comes an installation fileset, which provides some useful default maps to ...
A known side effect is, that some directory trees can only be used by the automounter.
| Package | autofs |
|---|---|
| Version | 4.1.3-4 |
| Bug Report | #279898 |
| Effect | Unused File Systems are not unmounted |
| Reason | Signal Race Condition |
Old patch:
@@ -919,8 +919,8 @@ static int st_expire(void)
return 1;
case EXP_STARTED:
- ap.state = ST_EXPIRE;
sigprocmask(SIG_SETMASK, &ready_sigs, NULL);
+ ap.state = ST_EXPIRE;
return 0;
}
return 1;
New patch:
@@ -904,6 +904,7 @@
return 1;
case EXP_STARTED:
+ sigprocmask(SIG_SETMASK, &lock_sigs, NULL);
ap.state = ST_EXPIRE;
sigprocmask(SIG_SETMASK, &ready_sigs, NULL);
return 0;