Changeset 3905 in MondoRescue for branches


Ignore:
Timestamp:
Apr 1, 2025, 10:55:14 AM (3 months ago)
Author:
Bruno Cornec
Message:

add support for UEFI rocky and alma

Location:
branches/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi/mindi

    r3889 r3905  
    22072207                if [ $dname = "rhel" -o $dname = "centos" -o $dname = "oel" ] && [ $dver = "6" ]; then
    22082208                    boottype=grub
    2209                 elif [ $dname = "rhel" -o $dname = "centos" -o $dname = "oel" ] && [ $dver -ge 7 ]; then
     2209                elif [ $dname = "rhel" -o $dname = "centos" -o $dname = "oel" -o $dname = "rocky" $dname = "alma" ] && [ $dver -ge 7 ]; then
    22102210                    boottype=grub2
    22112211                elif [ $dname = "fedora" ] && [ $dver -ge 20 ]; then
  • branches/3.3/mondo/src/common/libmondo-files.c

    r3878 r3905  
    991991        find_and_store_mondoarchives_home(g_mondo_home);
    992992    }
    993     mr_asprintf(command, CP_BIN " --parents -pRdf %s %s", g_mondo_home, bkpinfo->scratchdir);
     993    mr_asprintf(command, "tar cf - %s | (cd %s ; tar xf -)", g_mondo_home, bkpinfo->scratchdir);
    994994
    995995    log_msg(4, "command = %s", command);
Note: See TracChangeset for help on using the changeset viewer.