[Bug 573919] Re: autofs doesn't work with lucid

2012-01-31 Thread Mike Johnson
The way we're dealing with it at my site is as follows: blacklist autofs4 module # echo blacklist autofs4 /etc/modprobe.d/autofs.conf # chmod 644 /etc/modprobe.d/autofs.conf # chown root:root /etc/modprobe.d/autofs.conf load autofs module # echo autofs /etc/modules # reboot This is forced

[Bug 573919] Re: autofs doesn't work with lucid

2012-01-28 Thread David Greaves
autofs does not need and should not have a strong require for ypbind (or, even statd) However, when configured to autostart NFS mounts or to use NIS (!) then of course it depends on those services. -- You received this bug notification because you are a member of Ubuntu Server Team, which is

[Bug 573919] Re: autofs doesn't work with lucid

2012-01-26 Thread Yury V. Zaytsev
Latest Lucid and I'm having this issue. Can't be true it's still borked :-( -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in Ubuntu. https://bugs.launchpad.net/bugs/573919 Title: autofs doesn't work with lucid To manage

[Bug 573919] Re: autofs doesn't work with lucid

2012-01-26 Thread Clint Byrum
Yury, I'm sorry this bug is affecting you. It is blocked on bug #569757 , which has made slow progress, but may be close to landing in precise. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in Ubuntu.

[Bug 573919] Re: autofs doesn't work with lucid

2011-03-18 Thread Clint Byrum
Hello to all reporters of this issue. It seems to me that the upstream encoded requirements for autofs: # Required-Start: $network $ypbind # Required-Stop: $network $ypbind Have not been properly captured in the upstart job: start on (filesystem and net-device-up IFACE!=lo) stop on runlevel

[Bug 573919] Re: autofs doesn't work with lucid

2011-03-18 Thread Clint Byrum
Oh and to another point, statd's start on has changed and now always starts before NFS mounts are attempted. So the patch provided isn't really valid. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in ubuntu.

[Bug 573919] Re: autofs doesn't work with lucid

2011-01-28 Thread Geordi LaForge
Someone have an idea on how start autofs on boot with upstart??? I have a server with 9.10 and 10.04, the first is ok, the second no. The solution with the start on never and adding service autofs start in the file /etc/rc.local works, but is very very worst under the sysadmin's point of

[Bug 573919] Re: autofs doesn't work with lucid

2011-01-28 Thread Gergely Katona
Our 10 machine system (all lucid 64-bit) also suffers from this diffuse bug. Workaround #23 did not work, some of the machines start autofs anyway even with start on never in /etc/init/autofs.conf . Putting service autofs restart in /etc/rc.local works only for about half of the machines and not

[Bug 573919] Re: autofs doesn't work with lucid

2011-01-28 Thread Maciej Puzio
Further investigation revealed that in my case autofs was not racing with statd, but rather with nis (client daemon): bug 569757 and bug 570513. The workaround #15 appeared to work in some cases, because it introduced a small delay into autofs init script, which gave time for the nis daemon to

[Bug 573919] Re: autofs doesn't work with lucid

2011-01-05 Thread Maciej Puzio
On yet another machine autofs would not start correctly neither with the workaround from comment #15, nor without it. My efforts to convince Upstart to run startup scripts in a correct sequence ended in an utter failure. What I did instead is to modify /etc/init/autofs.conf so that Upstart doesn't

[Bug 573919] Re: autofs doesn't work with lucid

2010-12-22 Thread Ryan Lovett
#15 worked for me as well. I also set NEED_STATD=yes in /etc/default /nfs-common. But autofs should only depend on statd if it is mounting NFS volumes. autofs can be used with other filesystems besides NFS. -- You received this bug notification because you are a member of Ubuntu Server Team,

[Bug 573919] Re: autofs doesn't work with lucid

2010-11-09 Thread Maciej Puzio
For me workaround given in comment #8 in bug 525154 worked on four systems, but on the fifth it was not enough, and I had to combine it with #15 from this bug report. I have to admit that number of problems caused by Upstart is astoundingly high, and they crop up unexpectedly in a random fashion.

[Bug 573919] Re: autofs doesn't work with lucid

2010-07-27 Thread Azamat S. Kalimoulline
13 in bug 525154 and #15 of this solved my problems. -- autofs doesn't work with lucid https://bugs.launchpad.net/bugs/573919 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in ubuntu. -- Ubuntu-server-bugs mailing list

[Bug 573919] Re: autofs doesn't work with lucid

2010-07-19 Thread Carl Nobile
This is the same bug as 590570, but this one has been around longer. I think the real issue underlying this bug is in bug 525154 which relates to a race condition while starting portmap which in turn starts statd. This only seems to be an issue if you have /var as a separate mount point where

[Bug 573919] Re: autofs doesn't work with lucid

2010-07-19 Thread k3nt-1
Strange, because /var is mounted as part of / in my configuration (though I faced the problem...) -- autofs doesn't work with lucid https://bugs.launchpad.net/bugs/573919 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in ubuntu.

[Bug 573919] Re: autofs doesn't work with lucid

2010-07-19 Thread Carl Nobile
Post 13 in bug 525154 above has solved the issue with statd, but now autofs is failing to start. I tried to something similar with /etc/init/autofs.conf but to no avail. Still no joy here. k3nt-1 are you seeing the error messages in your /var/logs/boot.log file that I posted above? -- autofs

[Bug 573919] Re: autofs doesn't work with lucid

2010-07-06 Thread Azamat S. Kalimoulline
Autofs doesn't work because it startup script has incorrect dependency to statd (doesn't have). Can submit workaround: in /etc/init/autofs.conf add line status statd | grep -q start/running || start statd after pre-start script line -- autofs doesn't work with lucid

[Bug 573919] Re: autofs doesn't work with lucid

2010-06-23 Thread Hans Persson
I'm not sure if my problem is exactly the same as others are having here. but it definitely matches the description of autofs doesn't work with lucid. I've tried the workarounds listed here without success, though. My original problem is described here:

[Bug 573919] Re: autofs doesn't work with lucid

2010-06-01 Thread k3nt-1
Finally managed to successfully connect to my NFS server. Steps to solve the problem: * Add the following line to /etc/nsswitch.conf: automount: nis files * Change my /etc/auto.nfs config file by removing the options and leaving only the local folder and the target -- autofs doesn't work

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-31 Thread Luis Pinho
I can't also use autofs5 to automount server's home directory for my users. The workaround to get it work was to remove autofs5 autofs-ldap autofs5-ldap, then download karmic version of autofs and autofs-ldap wget

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-20 Thread Klaus Steinberger
Same problem here, autofs doesn't work because statd is not started. Some more debugging revealed that: if some NFS3 mount is used in /etc/fstab, anything work, statd ist started automatic, but if there is no NFS3 mount inside fstab statd is not started even with autof. So some of the upstart

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-20 Thread Brian Murray
** Tags added: patch -- autofs doesn't work with lucid https://bugs.launchpad.net/bugs/573919 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to autofs in ubuntu. -- Ubuntu-server-bugs mailing list Ubuntu-server-bugs@lists.ubuntu.com

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-18 Thread Paul Price
I also have this problem under Ubuntu 10.04LTS. Running the automounter manually (thanks onkara), on attempting to change to an NFS-mounted directory, I noticed: mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use '-o nolock' to keep locks local, or

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-18 Thread Dan Krejsa
Hi, After upgrading from 9.10 to 10.04, I had a short bit of trouble getting autofs working until I figured out that I needed to re-add the line automount: files nis to /etc/nsswitch.conf . Now things are working OK for me. -- autofs doesn't work with lucid

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-14 Thread onkara
It seems autofs is completely broken for me not only does the service not start automatically it doesn't mount NFS shares on manual start. Here is what I have tried $ sudo service autofs restart autofs start/running, process 4590 in syslog I see May 14 12:44:17 sky-ubuntu automount[4590]:

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-11 Thread rdw
This bug started out as 'autofs does not work with lucid' but the more recent comments indicate 'autofs works with lucid but does not start on boot in lucid' Can we nail down which it is and fix the notes and/or the title? I'm running Ubuntu 10.04 LTS; autofs is working fine for me but does

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-06 Thread Mathieu Clabaut
k3nt-1 : I've got the same message. Doing sudo start autofs worked. But I still was unable to make autofs start at boot where other dameon depending on filesystem or on net-device-up where started as expected. Any direction on how to debug the problem ? -- autofs doesn't work with lucid

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-05 Thread David Greaves
autofs should depend on statd in upstart Run: start statd to verify It looks like this is a bug in statd... which is just plain wrong :) With upstart do you have to teach other services about your service? eg autofs needs statd. statd says start on (started portmap or mounting TYPE=nfs)

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-04 Thread Boffi23
I can confirm this. I got the same problem with network-mounted directories. When I switch on autofs, the directories that should be mounted, are empty and not accessable. Once I uninstall autofs, the directories reappear. In Karmic everything works fine, not so in Lucid. Does anyone know what

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-02 Thread Chuck Short
Thank you for taking the time to report this bug and helping to make Ubuntu better. Unfortunately, we can't fix it because your description didn't include enough information. You may find it helpful to read How to report bugs effectively http://www.chiark.greenend.org.uk/~sgtatham/bugs.html.

[Bug 573919] Re: autofs doesn't work with lucid

2010-05-02 Thread Kris969
here are more information about this issue : The hardware I used for this test and I witnessed this problem with : SAMSUNG N150 Laptop What I wanted to do : I have Installed Ubuntu with the 10.04 BETA1, then I did daily updates. Today I decided to install autofs (cause I forgot to do it), I use