* Autofs screwed by getopt?
@ 2007-07-23 13:34 Michaël Cadilhac
2007-07-23 14:08 ` Jeff Moyer
2007-07-23 15:19 ` Jeff Moyer
0 siblings, 2 replies; 6+ messages in thread
From: Michaël Cadilhac @ 2007-07-23 13:34 UTC (permalink / raw)
To: autofs
[-- Attachment #1.1: Type: text/plain, Size: 2439 bytes --]
Hi guys!
I have a NIS based automount configuration that reads like that :
lri4-154 linux # ypcat -k auto.master
/special auto.special -rw,intr,soft
/servers auto.servers -rw,intr,soft
/local auto.local -rw,intr,soft
/u auto.u -rw,intr,soft,nosuid
/tmpsim auto.tmpsim -rw,intr,soft
/users auto.users -rw,intr,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
Didn't seem like a badly formatted one. So I launched autofs, and here's
what it said :
* Starting automounter ...
/special/usr/sbin/automount: option -t requires a numeric argument, got r,soft
* Failure on /special
/servers/usr/sbin/automount: option -t requires a numeric argument, got r,soft
* Failure on /servers
/local/usr/sbin/automount: option -t requires a numeric argument, got r,soft
* Failure on /local
/u/usr/sbin/automount: option -t requires a numeric argument, got r,soft,nosuid
* Failure on /u
/tmpsim/usr/sbin/automount: option -t requires a numeric argument, got r,soft
* Failure on /tmpsim
/users/usr/sbin/automount: option -t requires a numeric argument, got r,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
* Failure on /users
Point is that the `-rw,int' is interpreted by the getopt like a bunch of
not understood options then a `t', as in `timeout'. So the next part,
e.g. `r,soft', is considered as the argument of `timeout' which is not
quite good.
What I did is that I removed the short opts for getopt in the init.d
script, but I'm not quite sure it's The Right Thing to Do.
Maybe the config got from nis is faulty, if so, just tell me, I'll
despise my sysadmin.
Thanks!
PS: In fact, it seems that the mount options are not applied at
all. Don't have a clue why.
------------------------------------------------------------------------
lri4-154 linux # automount --version
Linux automount version 4.1.3
lri4-154 linux # uname -a
Linux lri4-154 2.6.22-gentoo-r1 #1 SMP Thu Jul 19 16:20:19 CEST 2007
i686 Intel(R) Pentium(R) 4 CPU 2.80GHz GenuineIntel GNU/Linux
------------------------------------------------------------------------
--
| Michaël `Micha' Cadilhac | Un paradoxe autoréférent ? |
| http://michael.cadilhac.name | |
| JID/MSN: | ... Je dis pas non ! |
`---- michael.cadilhac@gmail.com | - --'
[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]
[-- Attachment #2: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Autofs screwed by getopt?
2007-07-23 13:34 Autofs screwed by getopt? Michaël Cadilhac
@ 2007-07-23 14:08 ` Jeff Moyer
2007-07-23 14:21 ` Michaël Cadilhac
2007-07-23 15:19 ` Jeff Moyer
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Moyer @ 2007-07-23 14:08 UTC (permalink / raw)
To: Michaël Cadilhac; +Cc: autofs
==> On Mon, 23 Jul 2007 15:34:14 +0200, michael@cadilhac.name (Michaël Cadilhac) said:
Michaël> Hi guys!
Michaël> I have a NIS based automount configuration that reads like that :
Michaël> lri4-154 linux # ypcat -k auto.master
Michaël> /special auto.special -rw,intr,soft
Michaël> /servers auto.servers -rw,intr,soft
Michaël> /local auto.local -rw,intr,soft
Michaël> /u auto.u -rw,intr,soft,nosuid
Michaël> /tmpsim auto.tmpsim -rw,intr,soft
Michaël> /users auto.users -rw,intr,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
Michaël> Didn't seem like a badly formatted one. So I launched autofs, and here's
Michaël> what it said :
Michaël> * Starting automounter ...
Michaël> /special/usr/sbin/automount: option -t requires a numeric argument, got r,soft
Michaël> * Failure on /special
Michaël> /servers/usr/sbin/automount: option -t requires a numeric argument, got r,soft
Michaël> * Failure on /servers
Michaël> /local/usr/sbin/automount: option -t requires a numeric argument, got r,soft
Michaël> * Failure on /local
Michaël> /u/usr/sbin/automount: option -t requires a numeric argument, got r,soft,nosuid
Michaël> * Failure on /u
Michaël> /tmpsim/usr/sbin/automount: option -t requires a numeric argument, got r,soft
Michaël> * Failure on /tmpsim
Michaël> /users/usr/sbin/automount: option -t requires a numeric argument, got r,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
Michaël> * Failure on /users
Michaël> Point is that the `-rw,int' is interpreted by the getopt like a bunch of
Michaël> not understood options then a `t', as in `timeout'. So the next part,
Michaël> e.g. `r,soft', is considered as the argument of `timeout' which is not
Michaël> quite good.
Michaël> What I did is that I removed the short opts for getopt in the init.d
Michaël> script, but I'm not quite sure it's The Right Thing to Do.
Michaël> Maybe the config got from nis is faulty, if so, just tell me, I'll
Michaël> despise my sysadmin.
Michaël> Thanks!
Michaël> PS: In fact, it seems that the mount options are not applied at
Michaël> all. Don't have a clue why.
Michaël> lri4-154 linux # automount --version
Michaël> Linux automount version 4.1.3
You are most likely running into a bug in the parsing done in the init
script. What does '/etc/init.d/autofs status' show?
I have a couple of patches to fix that up. I don't have a gentoo
source tree, though. If you can point me at one, I can likely send
you a patch to try.
-Jeff
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Autofs screwed by getopt?
2007-07-23 14:08 ` Jeff Moyer
@ 2007-07-23 14:21 ` Michaël Cadilhac
[not found] ` <x49ejizqjgj.fsf@segfault.boston.devel.redhat.com>
0 siblings, 1 reply; 6+ messages in thread
From: Michaël Cadilhac @ 2007-07-23 14:21 UTC (permalink / raw)
To: autofs
[-- Attachment #1.1: Type: text/plain, Size: 1450 bytes --]
Jeff Moyer <jmoyer@redhat.com> writes:
> You are most likely running into a bug in the parsing done in the init
> script. What does '/etc/init.d/autofs status' show?
Well, just `started'.
> I have a couple of patches to fix that up. I don't have a gentoo
> source tree, though. If you can point me at one, I can likely send
> you a patch to try.
I'm running a Gentoo, I'm root and all the stuff so I can try your
patch.
Michaël> PS: In fact, it seems that the mount options are not applied at
Michaël> all. Don't have a clue why.
Seems like :
lri4-154:/dd $ mount
[...]
automount(pid23161) on /special type autofs (rw,fd=4,pgrp=23161,minproto=2,maxproto=4)
automount(pid23175) on /servers type autofs (rw,fd=4,pgrp=23175,minproto=2,maxproto=4)
automount(pid23190) on /local type autofs (rw,fd=4,pgrp=23190,minproto=2,maxproto=4)
automount(pid23204) on /u type autofs (rw,fd=4,pgrp=23204,minproto=2,maxproto=4)
automount(pid23218) on /tmpsim type autofs (rw,fd=4,pgrp=23218,minproto=2,maxproto=4)
automount(pid23233) on /users type autofs (rw,fd=4,pgrp=23233,minproto=2,maxproto=4)
--
| Michaël `Micha' Cadilhac | Le copillage-collage |
| http://michael.cadilhac.name | tue le programmeur. |
| JID/MSN: | -- Dictons LRDE |
`---- michael.cadilhac@gmail.com | - --'
[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]
[-- Attachment #2: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Autofs screwed by getopt?
2007-07-23 13:34 Autofs screwed by getopt? Michaël Cadilhac
2007-07-23 14:08 ` Jeff Moyer
@ 2007-07-23 15:19 ` Jeff Moyer
2007-07-23 16:27 ` Michaël Cadilhac
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Moyer @ 2007-07-23 15:19 UTC (permalink / raw)
To: Michaël Cadilhac; +Cc: autofs
==> On Mon, 23 Jul 2007 15:34:14 +0200, michael@cadilhac.name (Michaël Cadilhac) said:
Michaël> Hi guys!
Michaël> I have a NIS based automount configuration that reads like that :
Michaël> lri4-154 linux # ypcat -k auto.master
Michaël> /special auto.special -rw,intr,soft
Michaël> /servers auto.servers -rw,intr,soft
Michaël> /local auto.local -rw,intr,soft
Michaël> /u auto.u -rw,intr,soft,nosuid
Michaël> /tmpsim auto.tmpsim -rw,intr,soft
Michaël> /users auto.users -rw,intr,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
Ian pointed out the obvious to me in irc. From the man page for auto.master:
Any remaining command line arguments without leading dashes (-) are taken as options (-o) to
mount. Arguments with leading dashes are considered options for the maps.
So, remove the '-' character from the options list and things should work as expected.
-Jeff
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: Autofs screwed by getopt?
2007-07-23 15:19 ` Jeff Moyer
@ 2007-07-23 16:27 ` Michaël Cadilhac
0 siblings, 0 replies; 6+ messages in thread
From: Michaël Cadilhac @ 2007-07-23 16:27 UTC (permalink / raw)
To: Jeff Moyer; +Cc: autofs
[-- Attachment #1.1: Type: text/plain, Size: 1403 bytes --]
Jeff Moyer <jmoyer@redhat.com> writes:
> ==> On Mon, 23 Jul 2007 15:34:14 +0200, michael@cadilhac.name (Michaël Cadilhac) said:
>
> Michaël> Hi guys!
> Michaël> I have a NIS based automount configuration that reads like that :
>
> Michaël> lri4-154 linux # ypcat -k auto.master
> Michaël> /special auto.special -rw,intr,soft
> Michaël> /servers auto.servers -rw,intr,soft
> Michaël> /local auto.local -rw,intr,soft
> Michaël> /u auto.u -rw,intr,soft,nosuid
> Michaël> /tmpsim auto.tmpsim -rw,intr,soft
> Michaël> /users auto.users -rw,intr,hard,nosuid,tcp,nfsvers=3,timeo=600,retrans=2
>
> Ian pointed out the obvious to me in irc. From the man page for auto.master:
>
> Any remaining command line arguments without leading dashes (-)
> are taken as options (-o) to mount. Arguments with leading
> dashes are considered options for the maps.
Damn ; I didn't see that. Well, I guess I'll have to shout (or cry) at
my system admin, because I can't do anything to the NIS database myself.
Thank you both :-)
--
| Michaël `Micha' Cadilhac | Si j'étais sous-secrétaire d'État |
| http://michael.cadilhac.name | aux choux farcis, vous entendriez |
| JID/MSN: | beaucoup parler des choux farcis ! |
`---- michael.cadilhac@gmail.com | -- Nicolas Sarkozy - --'
[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]
[-- Attachment #2: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-07-23 16:27 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-23 13:34 Autofs screwed by getopt? Michaël Cadilhac
2007-07-23 14:08 ` Jeff Moyer
2007-07-23 14:21 ` Michaël Cadilhac
[not found] ` <x49ejizqjgj.fsf@segfault.boston.devel.redhat.com>
2007-07-23 15:07 ` Michaël Cadilhac
2007-07-23 15:19 ` Jeff Moyer
2007-07-23 16:27 ` Michaël Cadilhac
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.