����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# Exclude mountpoints from restore.
# This is based on the EXCLUDE_RESTORE and EXCLUDE_RECREATE variables.
# The output is written to RESTORE_EXCLUDE_FILE.
RESTORE_EXCLUDE_FILE="$TMP_DIR/restore-exclude-list.txt"
## FIXME: Use "$RESTORE_EXCLUDE_FILE" in other modules as well.
: >"$RESTORE_EXCLUDE_FILE"
local component
for component in "${EXCLUDE_RECREATE[@]}" ; do
if ! IsInArray "$component" "${EXCLUDE_RESTORE[@]}" ; then
EXCLUDE_RESTORE+=( "$component" )
fi
done
local comp_type children child
local comp_types=( "btrfsmountedsubvol" "fs" )
for component in "${EXCLUDE_RESTORE[@]}" ; do
for comp_type in "${comp_types[@]}"; do
children=$(get_child_components "$component" "$comp_type" | sort -u)
if [ -n "$children" ] ; then
for child in $children ; do
child=${child#$comp_type:}
echo "${child#/}" >> "$RESTORE_EXCLUDE_FILE"
echo "${child#/}/*" >> "$RESTORE_EXCLUDE_FILE"
done
fi
done
# exclude the component itself
for comp_type in "${comp_types[@]}"; do
component=${component#$comp_type:}
done
echo "${component#/}" >> "$RESTORE_EXCLUDE_FILE"
echo "${component#/}/*" >> "$RESTORE_EXCLUDE_FILE"
done
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 010_prepare_files.sh | File | 2.18 KB | 0644 |
|
| 200_recreate_hpraid.sh | File | 7.92 KB | 0644 |
|
| 250_compare_disks.sh | File | 13 KB | 0644 |
|
| 270_overrule_migration_mode.sh | File | 1.2 KB | 0644 |
|
| 300_map_disks.sh | File | 22.12 KB | 0644 |
|
| 310_remove_exclusions.sh | File | 4.08 KB | 0644 |
|
| 319_rename_xfs_configs.sh | File | 4.14 KB | 0644 |
|
| 320_apply_mappings.sh | File | 1.83 KB | 0644 |
|
| 420_autoresize_last_partitions.sh | File | 52.23 KB | 0644 |
|
| 430_autoresize_all_partitions.sh | File | 3.96 KB | 0644 |
|
| 500_confirm_layout_file.sh | File | 2.35 KB | 0644 |
|
| 510_list_dependencies.sh | File | 103 B | 0644 |
|
| 520_exclude_components.sh | File | 607 B | 0644 |
|
| 540_generate_device_code.sh | File | 1.71 KB | 0644 |
|
| 550_finalize_script.sh | File | 119 B | 0644 |
|
| 600_show_unprocessed.sh | File | 3.16 KB | 0644 |
|
| 610_exclude_from_restore.sh | File | 1.23 KB | 0644 |
|