Ticket #599 (closed defect: fixed)
mondorestore fails to mount the nfs backup
| Reported by: | vicgat | Owned by: | bruno |
|---|---|---|---|
| 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
Note: See
TracTickets for help on using
tickets.

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