Changeset 433 in MondoRescue for branches


Ignore:
Timestamp:
Mar 5, 2006, 2:52:28 AM (18 years ago)
Author:
andree
Message:

Removed 'ax' options from ps call when checking for ntfsclone is still
running - busybox 1.1.0 ps doesn't like them and we don't need them.

File:
1 edited

Legend:

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

    r425 r433  
    16311631        log_msg(3, "Waiting for ntfsclone to finish");
    16321632        sprintf(tmp,
    1633                 " ps ax | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
     1633                " ps | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
    16341634        while (system(tmp) == 0) {
    16351635            sleep(1);
     
    18841884        log_msg(3, "Waiting for ntfsclone to finish");
    18851885        sprintf(tmp,
    1886                 " ps ax | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
     1886                " ps | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
    18871887        while (system(tmp) == 0) {
    18881888            sleep(1);
Note: See TracChangeset for help on using the changeset viewer.