Changeset 3780 in MondoRescue


Ignore:
Timestamp:
Jan 25, 2021, 7:43:10 PM (3 years ago)
Author:
Bruno Cornec
Message:

normalize usage of syslinux variable with dirname

Location:
branches/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/ansible/group_vars/all

    r3761 r3780  
    33host: mondorescue.hpintelco.org
    44ip_ext: 185.170.48.239
    5 hyperlinux: 82.236.159.40
     5hyperlinux: 193.251.72.40
    66#  "{{ lookup('dig', 'www.hyper-linux.org') }}"
    77sshkey:
     
    1010  "{{ lookup('file', '/users/bruno/.ssh/pb_rsa.pub') }}"
    1111urpmi_server: http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib
     12ip_int: 10.11.7.195
     13netmask_int: 255.255.255.192
     14gw: 10.11.7.193
     15smtp: 10.11.3.13
     16dns1: 10.11.0.13
     17dns2: 10.11.0.14
     18keypwd: XXXXXXXXXXX
     19dbpwd: XXXXXXXXXXX
  • branches/3.3/mindi/mindi

    r3778 r3780  
    22882288                LogFile "INFO: Copying $LDLINUXE64 to $efidir"
    22892289                cp $LDLINUXE64 $efidir 2>> $LOGFILE || Die "Cannot copy $LDLINUXE64 to $efidir). Did you run out of disk space?"
    2290                 cp $LDLINUXE64/../libutil.c32 $efidir 2>> $LOGFILE || Die "Cannot copy libutil.c32 to $efidir). Did you run out of disk space?"
    2291                 if [ -e $LDLINUXE64/../isolinux.c32 ]; then
    2292                     cp $LDLINUXE64/../isolinux.c32 $efidir 2>> $LOGFILE || Die "Cannot copy isolinux.c32 to $efidir). Did you run out of disk space?"
     2290                cp $(dirname $LDLINUXE64)/libutil.c32 $efidir 2>> $LOGFILE || Die "Cannot copy libutil.c32 to $efidir). Did you run out of disk space?"
     2291                if [ -e $(dirname $LDLINUXE64)/isolinux.c32 ]; then
     2292                        cp $(dirname $LDLINUXE64)/isolinux.c32 $efidir 2>> $LOGFILE || Die "Cannot copy isolinux.c32 to $efidir). Did you run out of disk space?"
    22932293                fi
    22942294            fi
     
    23072307        cp $LDLINUXC32 "$tgdir" 2>> $LOGFILE || Die "Cannot copy $LDLINUXC32 to $tgdir. Did you run out of disk space?"
    23082308    fi
    2309     if [ -e `dirname $LDLINUXC32`/isolinux.c32 ]; then
     2309    if [ -e $(dirname $LDLINUXC32)/isolinux.c32 ]; then
    23102310        LogFile "INFO: Copying isolinux.c32 to $tgdir"
    2311         cp `dirname $LDLINUXC32`/isolinux.c32 $tgdir 2>> $LOGFILE || Die "Cannot copy isolinux.c32 to $tgdir). Did you run out of disk space?"
     2311        cp $(dirname $LDLINUXC32)/isolinux.c32 $tgdir 2>> $LOGFILE || Die "Cannot copy isolinux.c32 to $tgdir). Did you run out of disk space?"
    23122312    fi
    23132313
Note: See TracChangeset for help on using the changeset viewer.