Opened 12 years ago

Closed 12 years ago

#599 closed defect (fixed)

mondorestore fails to mount the nfs backup

Reported by: victor gattegno Owned by: Bruno Cornec
Priority: normal Milestone: 3.0.2
Component: mondo Version: 3.0.1
Severity: major Keywords: mondorestore mount nfs
Cc:

Description

I see in mondorestore.log :

running: mount -t nfs -o nolock,roroot@192.168.2.105: ...

It should have been :

running: mount -t nfs -o nolock,ro root@192.168.2.105: ...

So I think that, in libmondo-devices.c Line 2571:

mr_asprintf(&tmp, "mount -t %s -o nolock,ro", bkpinfo->netfs_proto);

should be :

mr_asprintf(&tmp, "mount -t %s -o nolock,ro ", bkpinfo->netfs_proto);

Change History (1)

comment:1 by Bruno Cornec, 12 years ago

Resolution: fixed
Status: newclosed

Thanks for your report Victor. I used another way to fix it to cover all cases with rev [2973].

Note: See TracTickets for help on using tickets.