autofs-vl.spec 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. %bcond_with systemd
  2. Summary: A tool for automatically mounting and unmounting filesystems.
  3. Summary(ja): 自動的にファイルシステムをマウント/アンマウントするツール
  4. Name: autofs
  5. Epoch: 1
  6. Version: 5.1.8
  7. Release: 1%{?_dist_release}%{?with_systemd:.systemd}
  8. Group: system
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. Packager: daisuke, kenta, shaolin
  12. License: GPL
  13. Source: https://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-%{version}.tar.xz
  14. ## Vine Patch(es)
  15. Patch100: autofs-3.1.7-initdir.patch
  16. Patch101: autofs-5.0.3-rc.autofs_LSB.patch
  17. Patch102: autofs-5.0.8-fix-initscript-vine.patch
  18. Buildroot: %{_tmppath}/%{name}-%{version}-root
  19. BuildRequires: openldap-devel
  20. BuildRequires: libxml2-devel, openssl-devel
  21. BuildRequires: util-linux-ng, nfs-utils, e2fsprogs
  22. BuildRequires: flex, bison
  23. BuildRequires: libtirpc-devel libnsl2-devel
  24. BuildRequires: rpcgen
  25. %if %{with systemd}
  26. BuildRequires: systemd-units
  27. BuildRequires: systemd-devel
  28. Requires(post): systemd-units
  29. Requires(preun): systemd-units
  30. Requires(postun): systemd-units
  31. %else
  32. Requires(post): /sbin/chkconfig
  33. Requires(preun): /sbin/service
  34. Requires(postun): /sbin/chkconfig
  35. Requires(postun): /sbin/service
  36. %endif
  37. Requires: kernel >= 2.6.17
  38. Requires: bash, sed, gawk, coreutils, grep, module-init-tools, procps
  39. Provides: autofs-ldap
  40. Obsoletes: autofs-ldap <= 4.1.4-11vl2
  41. %description
  42. Autofs controls the operation of the automount daemons. The automount
  43. daemons automatically mount filesystems when you use them and
  44. unmount them after a period of inactivity. Filesystems can include
  45. network filesystems, CD-ROMs, floppies and others.
  46. Install this package if you want a program for automatically mounting
  47. and unmounting filesystems. If your Vine Linux machine is on a
  48. network, you should install autofs.
  49. %description -l ja
  50. autofs は automount デーモンの動作を制御します.
  51. automount デーモンは,ファイルシステムを使う時に自動的にマウントし,
  52. 一定時間使わなければアンマウントしてくれます.
  53. 対象となるファイルシステムには NFS, CD-ROM, フロッピー等があります.
  54. ファイルシステムを自動的にマウント/アンマウントさせたい場合は
  55. このパッケージをインストールして下さい.Vine Linux をインストールした
  56. マシンをネットワークに接続しているのならば,autofs をインストール
  57. すると良いでしょう.
  58. %debug_package
  59. %prep
  60. %setup -q
  61. echo %{version}-%{release} > .version
  62. %if !%{with systemd}
  63. ## Vine Patch(es)
  64. if [ "%{_initdir}" = "/etc/rc.d/init.d" ]; then
  65. patch -p1 -b --suffix .initdir < %{PATCH100}
  66. fi
  67. %patch101 -p1 -b .lsb
  68. %patch102 -p1 -b .lsb
  69. %endif
  70. echo %{version}-%{release} > .version
  71. %if %{with systemd}
  72. %define systemd_configure_arg --with-systemd
  73. %endif
  74. %define unitdir %{?_unitdir:/lib/systemd/system}
  75. %build
  76. CFLAGS="$RPM_OPT_FLAGS -ggdb"; export CFLAGS
  77. %configure \
  78. --without-sasl \
  79. --disable-mount-locking \
  80. --enable-ignore-busy \
  81. --enable-forced-shutdown \
  82. --without-hesiod \
  83. --with-libtirpc %{?systemd_configure_arg:}
  84. make initdir=/etc/rc.d/init.d DONTSTRIP=1
  85. %install
  86. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  87. mkdir -p -m755 $RPM_BUILD_ROOT%{_initdir}
  88. mkdir -p -m755 $RPM_BUILD_ROOT%{_libdir}/autofs
  89. mkdir -p -m755 $RPM_BUILD_ROOT%{_mandir}/{man5,man8}
  90. mkdir -p -m755 $RPM_BUILD_ROOT%{_sbindir}
  91. mkdir -p -m755 $RPM_BUILD_ROOT/etc/sysconfig
  92. mkdir -p -m755 $RPM_BUILD_ROOT/etc/auto.master.d
  93. make install mandir=%{_mandir} initdir=/etc/rc.d/init.d systemddir=%{unitdir} INSTALLROOT=$RPM_BUILD_ROOT
  94. make -C redhat
  95. install -m 755 -d $RPM_BUILD_ROOT/misc
  96. install -m 644 redhat/autofs.sysconfig $RPM_BUILD_ROOT/etc/sysconfig/autofs
  97. %if %{with systemd}
  98. # Configure can get this wrong when the unit files appear under /lib and /usr/lib
  99. find $RPM_BUILD_ROOT -type f -name autofs.service -exec rm -f {} \;
  100. install -Dpm 644 redhat/autofs.service $RPM_BUILD_ROOT%{unitdir}/autofs.service
  101. %define init_file_name %{unitdir}/autofs.service
  102. %else
  103. install -m 755 redhat/autofs.init $RPM_BUILD_ROOT/etc/rc.d/init.d/autofs
  104. %define init_file_name /etc/rc.d/init.d/autofs
  105. %endif
  106. install -m 644 redhat/autofs.conf $RPM_BUILD_ROOT/etc/autofs.conf
  107. install -m 644 redhat/autofs.sysconfig $RPM_BUILD_ROOT/etc/sysconfig/autofs
  108. install -m 644 samples/auto.master $RPM_BUILD_ROOT/etc/auto.master
  109. install -m 644 samples/auto.misc $RPM_BUILD_ROOT/etc/auto.misc
  110. install -m 755 samples/auto.net $RPM_BUILD_ROOT/etc/auto.net
  111. install -m 755 samples/auto.smb $RPM_BUILD_ROOT/etc/auto.smb
  112. install -m 600 samples/autofs_ldap_auth.conf $RPM_BUILD_ROOT/etc/autofs_ldap_auth.conf
  113. %clean
  114. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  115. %post
  116. %if %{with systemd}
  117. %systemd_post %{name}.service
  118. %else
  119. if [ $1 -eq 1 ]; then
  120. /sbin/chkconfig --add autofs
  121. fi
  122. %endif
  123. %postun
  124. %if %{with systemd}
  125. %systemd_postun_with_restart %{name}.service
  126. %else
  127. if [ $1 -ge 1 ] ; then
  128. /sbin/service autofs condrestart > /dev/null 2>&1 || :
  129. fi
  130. %endif
  131. %preun
  132. %if %{with systemd}
  133. %systemd_preun %{name}.service
  134. %else
  135. if [ "$1" = 0 ] ; then
  136. /sbin/service autofs stop > /dev/null 2>&1
  137. chkconfig --del autofs
  138. fi
  139. %endif
  140. %files
  141. %defattr(-,root,root)
  142. %license COPYING COPYRIGHT
  143. %doc CHANGELOG CREDITS patches/*
  144. %doc samples/*
  145. %doc README README.*
  146. %config %{init_file_name}
  147. %config(noreplace) /etc/autofs.conf
  148. %config(noreplace,missingok) /etc/auto.master
  149. %config(noreplace,missingok) /etc/auto.misc
  150. %config(noreplace,missingok) /etc/auto.net
  151. %config(noreplace,missingok) /etc/auto.smb
  152. %config(noreplace) /etc/autofs_ldap_auth.conf
  153. %config(noreplace) /etc/sysconfig/autofs
  154. %{_sbindir}/automount
  155. %dir /misc
  156. %dir %{_libdir}/autofs
  157. %{_libdir}/autofs/*.so
  158. %{_libdir}/libautofs.so
  159. %{_mandir}/*/*
  160. %dir /etc/auto.master.d
  161. %changelog
  162. * Sat Nov 27 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.1.8-1
  163. - updated to 5.1.8.
  164. * Thu Mar 04 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.1.7-1
  165. - updated to 5.1.7.
  166. - added systemd support (disabled as default).
  167. * Sat Apr 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.1.6-1
  168. - updated to 5.1.6.
  169. * Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 5.1.1-1
  170. - update to 5.1.1
  171. * Tue Jun 17 2014 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.1.0-1
  172. - new upstream release
  173. - Patch[123] removed (already in the upstream)
  174. * Sun Dec 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.0.8-2
  175. - add Patch102 (autofs-5.0.8-fix-initscript-vine.patch)
  176. * Sun Nov 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.0.8-1
  177. - new upstream release
  178. - update upstream patches (Patch1-3)
  179. * Sun Apr 17 2011 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.5-2
  180. - rebuilt on current VineSeed
  181. * Sun Apr 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.5-1
  182. - new upstream release
  183. - update upstream patches (Patch0-27)
  184. * Wed May 06 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.3-4
  185. - added Patch101: autofs-5.0.3-rc.autofs_LSB.patch to support LSB Header
  186. * Mon Jan 05 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.3-3
  187. - rebuilt with openldap-2.4.11
  188. * Sun Sep 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.3-2
  189. - make autofs.init executable. (<BTS:wishes:0160>)
  190. * Mon Sep 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.3-1vl5
  191. - new upstream release
  192. - update fedora patches
  193. * Sat Aug 30 2008 Shu KONNO <owa@bg.wakwak.com> 4.1.4-12vl5
  194. - applied new versioning policy, spec in utf-8
  195. * Fri Apr 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.4-11vl5
  196. - fix sort option on auto.net (<BTS:490>)
  197. * Mon Sep 18 2006 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.4-11vl4
  198. - added patch15 and patch16 imported from Fedora Core 5
  199. * Mon Sep 04 2006 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.4-11vl3
  200. - added Obsoletes: autofs-ldap
  201. - added BuildPrereq: openldap-devel
  202. * Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.4-11vl2
  203. - removed --without-openldap configure option
  204. - rebuilt with openldap-2.3.27-0vl1
  205. * Sun Oct 30 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.1.4-11vl1
  206. - updated based on Fedora
  207. * Wed Oct 26 2005 <jmoyer@redhat.com> - 1:4.1.4-11
  208. - Check the return code of is_local_addr in get_best_mount. (bz #169523)
  209. * Wed Oct 26 2005 <jmoyer@redhat.com> - 1:4.1.4-10
  210. - Fix a buffer overflow with large key lengths
  211. - change to the upstream reentrant syslog patch from the band-aid deferred
  212. syslog patch.
  213. - Get rid of the init script patch that hard-coded the release to redhat.
  214. This should be handled properly by all red hat distros.
  215. * Wed May 4 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-8
  216. - Add in the deferred syslog patch. This fixes a hung automounter issue
  217. related to unsafe calls to syslog in signal handler context.
  218. * Tue May 3 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-7
  219. - I reversed the checking for multimount entries, breaking those configs!
  220. This update puts the code back the way it was before I broke it.
  221. * Tue Apr 26 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-6
  222. - Fix a race between mounting a share and updating the cache in the parent
  223. process. If the mount completed first, the parent would not expire the
  224. stale entry, leaving it first on the list. This causes map updates to not
  225. be recognized (well, worse, they are recognized after the first expire, but
  226. not subsequent ones). Fixes a regression, bug #137026 (rhel3 bug).
  227. * Fri Apr 15 2005 Chris Feist <cfeist@redhat.com> - 1:4.1.4-5
  228. - Fixed regression with -browse not taking effect.
  229. * Wed Apr 13 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-4
  230. - Finish up with the merge breakage.
  231. - Temporary fix for the multimount detection code. It seems half-baked.
  232. * Wed Apr 13 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-3
  233. - Fix up the one-auto-master patch. My "improvements" had side-effects.
  234. * Wed Oct 27 2004 Chris Feist <cfeist@redhat.com> - 1:4.1.3-34
  235. - Added a patch to fix the automounter failing on ldap maps
  236. when it couldn't get the whole map. (ie. when the search
  237. limit was lower than the number of results)
  238. - updated Patch101
  239. - s/Red Hat/Vines/ in description
  240. * Wed Jun 23 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.1.7-42vl3
  241. - fix init script (Patch102)
  242. not to create lock file when no mountpoints are defined
  243. * Tue Oct 28 2003 Tomoya TAKA <taka@vinelinux.org> 3.1.7-42vl2
  244. - do not compile/install autofs-ldap-auto-master
  245. * Sun Oct 5 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.1.7-42vl1
  246. - based on Rawhide 3.1.7-42
  247. - Fri Apr 25 2003 Nalin Dahyabhai <nalin@redhat.com> 3.1.7-37
  248. - sync with current linux/auto_fs.h from the current kernel tree (#88562)
  249. - Tue Apr 2 2002 Nalin Dahyabhai <nalin@redhat.com> 3.1.7-28
  250. - try to properly handle nisplus maps (patch from Steve Foster via the
  251. autofs mailing list)
  252. - override the STRIP makefile variable to not strip binaries (that's the
  253. build root policy's job)
  254. - Wed Aug 29 2001 Nalin Dahyabhai <nalin@redhat.com> 3.1.7-21
  255. - don't inhibit starting if we have a subsys lock around -- that's the
  256. wrong thing to do anyway
  257. - don't create a subsys lock if we're unconfigured (#52755)
  258. - rebuild with new toolchain
  259. - s/Copyright/License/
  260. * Tue Jan 29 2002 Toru Sagami <sagami@vinelinux.org> 3.1.7-2vl2
  261. - make /etc/vine-release read by autofs.init
  262. * Fri Jan 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  263. - 3.1.7-2vl1
  264. - rebuilt for VineSeed
  265. - use better macros (%%{_initdir})
  266. - add Patch100 to cope with initdir :-(
  267. * Thu Jan 18 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  268. - 3.1.7-2vl0
  269. - based on 3.1.7-2 from Rawhide
  270. - remove /etc/init.d from PreReq
  271. - build without openldap and hesiod
  272. - BuildPreReq: bind-devel again for Vine
  273. - added Japanese summary and description
  274. * Tue Jan 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  275. - fix option parsing in lookup_multi (I think)
  276. - fix multi option handling in our hacked-up init script (reported by Thiago
  277. Bartolomei on the autofs mailing list)
  278. * Wed Dec 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  279. - update to 3.1.7
  280. - add the man pages back in (fell out in 3.1.6)
  281. * Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  282. - don't require /etc/auto.master to be there to start
  283. * Mon Nov 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  284. - update to 3.1.6
  285. - disable hesiod support because the new bind-devel doesn't include it
  286. - try to use nsswitch.conf for getting the contents of auto.master
  287. - only convert YP map names auto_home and auto_mnt
  288. * Fri Sep 8 2000 Nalin Dahyabhai <nalin@redhat.com>
  289. - add -lresolv to build properly with OpenLDAP 2
  290. * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
  291. - convert YP map names that start with "auto_" to "auto." (#16753)
  292. * Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
  293. - add an extra pause after the initial shutdown attempt
  294. * Fri Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  295. - patch init script to not shut down --submount mounts on reload
  296. - remove temporary files again during reload
  297. * Thu Aug 10 2000 Nalin Dahyabhai <nalin@redhat.com>
  298. - revert to 3.1.5
  299. - add 3.1.6pre1 patch to handle LDAP maps
  300. - add Epoch: to upgrade from Raw Hide or Pinstripe
  301. - update to 3.1.6pre2
  302. * Fri Aug 4 2000 Nalin Dahyabhai <nalin@redhat.com>
  303. - work around kernel insmod concurrency problem (#14972) by loading the module
  304. at start-time
  305. * Wed Aug 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  306. - fix duplicate detection for false matches (e.g. "/user" == "/users") (#15183)
  307. * Tue Aug 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  308. - merge ldap subpackage back into the main one and Obsolete: it
  309. - clean up build warnings
  310. - fix errors automounting ext2 filesystems due to uninitialized option string
  311. * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
  312. - move initscript back
  313. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  314. - automatic rebuild
  315. * Mon Jul 10 2000 Nalin Dahyabhai <nalin@redhat.com>
  316. - move the init script to the right place
  317. * Fri Jul 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  318. - add /net directory to the package
  319. * Thu Jul 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  320. - do manual unmounting in shutdown script
  321. - change initscripts prereq to /etc/init.d
  322. - move autoconf invocation to setup section
  323. * Wed Jul 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  324. - move condrestart to postun
  325. - make condrestart check the right file to determine if already running
  326. * Wed Jul 5 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  327. - ignore errors in post script
  328. * Tue Jul 4 2000 Matt Wilson <msw@redhat.com>
  329. - use full path to chkconfig
  330. - full *correct* path to chkconfig
  331. * Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  332. - smoother starting/stopping on upgrades/removal
  333. * Thu Jun 15 2000 Nalin Dahyabhai <nalin@redhat.com>
  334. - be more aggressive when shutting down autofs
  335. - add condrestart support
  336. * Mon Jun 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  337. - move man pages to %{_mandir}
  338. * Wed May 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  339. - tweak argument parsing (bug #11801)
  340. * Mon May 22 2000 Nalin Dahyabhai <nalin@redhat.com>
  341. - rebuild in new build environment
  342. * Mon May 8 2000 Nalin Dahyabhai <nalin@redhat.com>
  343. - fix duplicate detection logic (duh!)
  344. * Tue May 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  345. - add config: and processname: tags to init script
  346. * Sun Apr 30 2000 Nalin Dahyabhai <nalin@redhat.com>
  347. - fix shutdown logic (test -z $pid fails with multiple autofs daemons)
  348. * Wed Apr 26 2000 Nalin Dahyabhai <nalin@redhat.com>
  349. - split off autofs4 for testing & development
  350. - update patches for autofs4 for feeding back to autofs list
  351. - make auto.master a noreplace file
  352. * Mon Apr 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  353. - split lookup_ldap into a subpackage (bug #10874)
  354. * Tue Apr 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  355. - add LDAP map support, requires openldap
  356. - tweak init script patch to use fields 2+ for the map name instead of just 2
  357. * Wed Apr 05 2000 Nalin Dahyabhai <nalin@redhat.com>
  358. - fix bug #10402 by fixing the init script, hopefully for everybody
  359. - merge patches for the init script into a single patch to send to hpa
  360. - patch to build on 2.2 and late-series 2.3 kernels
  361. * Tue Feb 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  362. - enable hesiod support over libbind
  363. * Mon Feb 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  364. - fix init script bug when startup failed
  365. - fix option passing in init script
  366. * Sun Feb 13 2000 Nalin Dahyabhai <nalin@redhat.com>
  367. - make autofs start after ypbind by moving start priority 18, stop to 82
  368. - make sure that calls to "ps aux" include "www" to avoid snippage
  369. * Wed Feb 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  370. - make sure all the docs get packaged
  371. - make init script do status messages like others
  372. - add "nosuid,nodev" to options for /misc/cd
  373. - switch to using INSTALLROOT during make install
  374. * Fri Jan 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  375. - update to 3.1.4
  376. * Mon Sep 20 1999 Cristian Gafton <gafton@redhat.com>
  377. - use ps axw instead of ps ax in the init script
  378. * Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
  379. - chkconfig --del in %preun, not %postun
  380. * Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
  381. - add patch from HJLu to handle NIS auto.master better
  382. * Wed Aug 25 1999 Cristian Gafton <gafton@redhat.com>
  383. - fix bug #4708
  384. * Sat Aug 21 1999 Bill Nottingham <notting@redhat.com>
  385. - fix perms on /usr/lib/autofs/*
  386. - add support for specifying maptype in auto.master
  387. * Fri Aug 13 1999 Cristian Gafton <gafton@redhat.com>
  388. - add patch from rth to avoid an infinite loop
  389. * Wed Apr 28 1999 Cristian Gafton <gafton@redhat.com>
  390. - use "autofs" instead of "automount" for /var/lock/subsys lock file
  391. * Fri Apr 09 1999 Cristian Gafton <gafton@redhat.com>
  392. - enahanced initscript to try to load maps over NIS
  393. - changed the mount point back to misc (there is a reason we leave /mnt
  394. alone)
  395. - patched back autofs.misc to the version shipped on 5.2 to avoid replacing
  396. yet one more config file for those who upgrade
  397. * Wed Mar 24 1999 Preston Brown <pbrown@redhat.com>
  398. - upgrade to 3.1.3, fixing smbfs stuff and other things
  399. - changed mountpoint from /misc to /mnt
  400. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  401. - auto rebuild in the new build environment (release 10)
  402. * Mon Feb 8 1999 Bill Nottingham <notting@redhat.com>
  403. - build for kernel-2.2/glibc2.1
  404. * Tue Oct 6 1998 Bill Nottingham <notting@redhat.com>
  405. - fix bash2 breakage in init script
  406. * Sun Aug 23 1998 Jeff Johnson <jbj@redhat.com>
  407. - typo in man page.
  408. * Mon Jul 20 1998 Jeff Johnson <jbj@redhat.com>
  409. - added sparc to ExclusiveArch.
  410. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  411. - translations modified for de, fr, tr
  412. * Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
  413. - updated to 3.1.1
  414. * Wed Apr 22 1998 Michael K. Johnson <johnsonm@redhat.com>
  415. - enhanced initscripts
  416. * Fri Dec 05 1997 Michael K. Johnson <johnsonm@redhat.com>
  417. - Link with -lnsl for glibc compliance.
  418. * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
  419. - exclusivearch for i386 for now, since our kernel packages on
  420. other platforms don't include autofs yet.
  421. - improvements to initscripts.
  422. * Thu Oct 16 1997 Michael K. Johnson <johnsonm@redhat.com>
  423. - Built package from 0.3.14 for 5.0