- Timestamp:
- Jan 25, 2021, 7:43:10 PM (4 years ago)
- Location:
- branches/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/ansible/group_vars/all
r3761 r3780 3 3 host: mondorescue.hpintelco.org 4 4 ip_ext: 185.170.48.239 5 hyperlinux: 82.236.159.405 hyperlinux: 193.251.72.40 6 6 # "{{ lookup('dig', 'www.hyper-linux.org') }}" 7 7 sshkey: … … 10 10 "{{ lookup('file', '/users/bruno/.ssh/pb_rsa.pub') }}" 11 11 urpmi_server: http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib 12 ip_int: 10.11.7.195 13 netmask_int: 255.255.255.192 14 gw: 10.11.7.193 15 smtp: 10.11.3.13 16 dns1: 10.11.0.13 17 dns2: 10.11.0.14 18 keypwd: XXXXXXXXXXX 19 dbpwd: XXXXXXXXXXX -
branches/3.3/mindi/mindi
r3778 r3780 2288 2288 LogFile "INFO: Copying $LDLINUXE64 to $efidir" 2289 2289 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 ]; then2292 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?" 2293 2293 fi 2294 2294 fi … … 2307 2307 cp $LDLINUXC32 "$tgdir" 2>> $LOGFILE || Die "Cannot copy $LDLINUXC32 to $tgdir. Did you run out of disk space?" 2308 2308 fi 2309 if [ -e `dirname $LDLINUXC32`/isolinux.c32 ]; then2309 if [ -e $(dirname $LDLINUXC32)/isolinux.c32 ]; then 2310 2310 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?" 2312 2312 fi 2313 2313
Note:
See TracChangeset
for help on using the changeset viewer.