����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# This file is part of Relax-and-Recover, licensed under the GNU General
# Public License. Refer to the included COPYING for full text of license.
# 250_find_all_libs.sh
# This is to find out missing libraries with strace.
# If strace isn't installed this script is skipped.
# TODO: I <jsmeix@suse.de> wonder if it is really needed
# to find out missing libraries here or if (and why)
# it isn't sufficient via the RequiredSharedObjects function
# that is called in build/GNU/Linux/390_copy_binaries_libraries.sh
# Check if Strace Readlink File Is available and Backup_PROG=Duply
which strace || return 0
which readlink || return 0
which file || return 0
[ "x$BACKUP_PROG" == "xduply" ] || return 0
# Find Out the File used by duply status
FILES=$( strace -Ff -e open duply $DUPLY_PROFILE status 2>&1 1>/dev/null | grep -v '= -1' | grep -i open | grep -v "open resumed" | cut -d \" -f 2 | sort -u )
for name in $FILES ; do
# Libs ar often Links, Solve the Links
if [[ -f "$name" ]] || [[ -L "$name" ]] ; then
DATEI=$( readlink -f "$name" )
# Determinate if its a Lib
LIB=$( file $DATEI | grep "shared object" | cut -d \: -f 1 )
# Determinate if its a Script
SKRIPT_FILES=$( file $DATEI | grep "script," | cut -d \: -f 1 )
# Add the Lib
[ "x$LIB" != "x" ] && LIBS+=( "$name" )
# Add Script
[ "x$SKRIPT_FILES" != "x" ] && COPY_AS_IS+=( "$SKRIPT_FILES" )
fi
done
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 050_prep_duplicity.sh | File | 1.56 KB | 0644 |
|
| 200_find_duply_profile.sh | File | 3.98 KB | 0644 |
|
| 210_check_NETFS_URL_requirements.sh | File | 4.97 KB | 0644 |
|
| 220_define_backup_prog.sh | File | 339 B | 0644 |
|
| 250_find_all_libs.sh | File | 1.42 KB | 0644 |
|