Changeset 1252 in MondoRescue for branches/stable/mondo/src/mondorestore


Ignore:
Timestamp:
Mar 20, 2007, 11:48:46 AM (18 years ago)
Author:
Bruno Cornec
Message:

MDSTAT_FILE is used everywhere (replacing /proc/mdstat strings)

Location:
branches/stable/mondo/src/mondorestore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-prep.c

    r1251 r1252  
    21852185        }
    21862186#else
    2187         fin = fopen("/proc/mdstat", "r");
     2187        fin = fopen(MDSTAT_FILE, "r");
    21882188        if (!fin) {
    2189             log_OS_error("/proc/mdstat");
     2189            log_OS_error(MDSTAT_FILE);
    21902190            return (1);
    21912191        }
  • branches/stable/mondo/src/mondorestore/mondo-rstr-newt.c

    r1206 r1252  
    549549    malloc_string(tmp);
    550550    assert(raidrec != NULL);
    551     system
    552         ("grep Pers /proc/mdstat > /tmp/raid-personalities.txt 2> /dev/null");
     551    mr_asprintf(&tmp,"grep Pers %s > /tmp/raid-personalities.txt 2> /dev/null", MDSTAT_FILE);
     552    system(tmp);
     553    mr_free(tmp);
    553554    mr_asprintf(&personalities,
    554555           last_line_of_file("/tmp/raid-personalities.txt"));
Note: See TracChangeset for help on using the changeset viewer.