Ignore:
Timestamp:
Jan 27, 2011, 7:31:24 PM (13 years ago)
Author:
Bruno Cornec
Message:

r4180@localhost: bruno | 2011-01-27 10:26:41 +0100

  • Fix multiple port issues from 2.2.9 that prevented mindi to work
  • Change interface of call_program_and_get_last_line_of_output to allow not logging (call to mindi)
  • Status is working boot, but NFS interface broken due to conf file issues
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/common/libmondo-cli.c

    r2696 r2704  
    490490        mr_asprintf(tmp1, "mount | grep -E \"^[%s@]*%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_user, bkpinfo->netfs_mount);
    491491        mr_free(bkpinfo->isodir);
    492         bkpinfo->isodir = call_program_and_get_last_line_of_output(tmp1);
     492        bkpinfo->isodir = call_program_and_get_last_line_of_output(tmp1,TRUE);
    493493        mr_free(tmp1);
    494494
     
    511511                mr_asprintf(tmp1, "mount | grep -E \"^[%s@]*%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_user, bkpinfo->netfs_mount);
    512512                mr_free(bkpinfo->isodir);
    513                 bkpinfo->isodir = call_program_and_get_last_line_of_output(tmp1);
     513                bkpinfo->isodir = call_program_and_get_last_line_of_output(tmp1,TRUE);
    514514                mr_free(tmp1);
    515515
Note: See TracChangeset for help on using the changeset viewer.