Changeset 3769 in MondoRescue


Ignore:
Timestamp:
Jun 17, 2020, 2:23:57 AM (4 years ago)
Author:
Bruno Cornec
Message:

Add more alternatives for terminfo for Debian 10 support (Christian Werner <Christian.Werner_at_t-online.de>)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi/mindi

    r3768 r3769  
    24082408
    24092409    # Get terminfo content
    2410     ti="usr/share/terminfo/l"
    2411     if [ -d /$ti ]; then
    2412         mkdir -p $bigdir/$ti
    2413         cp -Rdf /$ti/* $bigdir/$ti 2>> $LOGFILE || LogAll "ERROR: issue copying terminfo"
    2414     fi
     2410    for ti in usr/share/terminfo/l usr/share/terminfo/x lib/terminfo/l lib/terminfo/x ; do
     2411        if [ -d /$ti ]; then
     2412            mkdir -p $bigdir/$ti
     2413            cp -Rdf /$ti/* $bigdir/$ti 2>> $LOGFILE || LogAll "ERROR: issue copying terminfo"
     2414        fi
     2415    done
    24152416    if [ -e "$MONDO_SHARE/restore-scripts" ]; then
    24162417        cp -Rdf $MONDO_SHARE/restore-scripts/mondo/* $bigdir/usr/bin 2>> $LOGFILE
Note: See TracChangeset for help on using the changeset viewer.