����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#
# layout/save/FDRUPSTREAM/Linux-s390/990_copy_disklayout_file.sh
#
# For s390 if ZVM naming is setup, then copy the disklayout.conf to the output location
# s390 optional naming override of dsklayout.conf to match the s390 filesystem naming conventions
# example:
# if the VM name / VM user id ('vmcp q userid') is HOSTA then conf is written as HOSTA.disklayout
# vars needed:
# ZVM_NAMING - set in local.conf, if Y then enable naming override
# ARCH - override only if ARCH is Linux-s390
#
# The copy of the disklayout.conf to the output location functionality
# is only done in case of BACKUP=FDRUPSTREAM which is intended because
# this functionality is not needed for the restore on s390 to work properly.
# It was only requested to make this file available for FDRUPSTREAM
# cf. https://github.com/rear/rear/pull/2142#discussion_r356696670
# Only for s390 when also ZVM naming is requested (cf. prep/GNU/Linux/400_guess_kernel.sh):
test "$ARCH" = "Linux-s390" || return 0
is_true "$ZVM_NAMING" || return 0
# Cf. https://manpages.debian.org/testing/s390-tools/vmcp.8.en.html
# An artificial bash array is used so that the first array element $VM_UID is the VM user id:
VM_UID=( $( vmcp q userid ) )
test $VM_UID || Error "Could not set VM_UID ('vmcp q userid' did not return the VM user id)"
scheme="$( url_scheme "$OUTPUT_URL" )"
path="$( url_path "$OUTPUT_URL" )"
opath="$( output_path "$scheme" "$path" )"
test $opath || Error "Could not determine output path from OUTPUT_URL='$OUTPUT_URL'"
LogPrint "s390 disklayout.conf will be saved as $opath/$VM_UID.disklayout.conf"
mkdir $v -p "$opath"
cp $v $DISKLAYOUT_FILE $opath/$VM_UID.disklayout.conf || Error "Failed to copy '$DISKLAYOUT_FILE' to $opath/$VM_UID.disklayout.conf"
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 990_copy_disklayout_file.sh | File | 1.71 KB | 0644 |
|