Just wanted to add that I'm experiencing this issue, or at least one
very much like it (Apologies if I've picked the wrong bug to reply to,
there are several bugs with a common theme and I did my best).
I've got two network interfaces, only one of which has access to the NFS
server. If the int
Just noting that I was bitten by the locking bug too, which I solved
thusly:
TLOCK="$(mktemp -p /var/lock)"
LOCK="/var/lock/ifupdown-mountnfs"
if ln "$TLOCK "$LOCK" 2>/dev/null; then
do_start
rm -f "$LOCK"
fi
rm -f "$TLOCK"
(Here's another variant with one file less, but I'm no
> BTW, the dangling /var/run/network/mountnfs was left behind because
> at some point I used "CTRL-C" to kill the hanging script and I
> didn't realize even the existence of the lock directory at that
> time.
Right. Can you try this patch and see if it solve that problem?
* Add exit handler i
Hi,
I had the same problem as Chaogui - nfs shares would not be mounted
because /var/run/network/mountnfs existed. Will there be problems if
mkdir /var/run/network/mountnfs 2>/dev/null || exit 0
is changed to
mkdir -p /var/run/network/mountnfs 2>/dev/null || exit 0
? In any case, if the scrip
On Sun, Oct 01, 2006 at 11:30:43PM -0400, Chaogui Zhang wrote:
>
> I won't be able to test if I can reproduce the problem (not deleting the
> directory /var/run/network/mountnfs). Manual execution of the script
> /etc/network/if-up.d/mountnfs now works perfectly. I will reboot the
> system tomorr
On Sun, Oct 01, 2006 at 08:03:25PM +0200, Petter Reinholdtsen wrote:
>
> > The NFS directory listed in /etc/fstab is not mounted. Tried using
> > the /etc/network/if-up.d/mountnfs script manually and it didn't work
> > either (without giving any error message).
>
> Hm, strange. Can you try to ru
found 390404 2.86.ds1-16
block 388761 by 388814
thanks
> The NFS directory listed in /etc/fstab is not mounted. Tried using
> the /etc/network/if-up.d/mountnfs script manually and it didn't work
> either (without giving any error message).
Hm, strange. Can you try to run it using 'sh -x
/etc/ne
Package: initscripts
Version: 2.86.ds1-27
Severity: important
The NFS directory listed in /etc/fstab is not mounted. Tried using the
/etc/network/if-up.d/mountnfs script manually and it didn't work either
(without giving any error message).
Using "mount host:/remote-direcotry /mountpoint" work
8 matches
Mail list logo