1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# This script uses Borg 1.2 to generate test data for "borg transfer --upgrader=From12To20".
BORG=./borg-1.2.2
# On macOS, GNU tar is available as gtar.
TAR=gtar
SRC=/tmp/borgtest
ARCHIVE=`pwd`/src/borg/testsuite/archiver/repo12.tar.gz
export BORG_REPO=/tmp/repo12
META=$BORG_REPO/test_meta
export BORG_PASSPHRASE="waytooeasyonlyfortests"
export BORG_DELETE_I_KNOW_WHAT_I_AM_DOING=YES
$BORG init -e repokey 2> /dev/null
mkdir $META
# archive1
mkdir $SRC
pushd $SRC >/dev/null
mkdir directory
echo "content" > directory/no_hardlink
echo "hardlink content" > hardlink1
ln hardlink1 hardlink2
echo "symlinked content" > target
ln -s target symlink
ln -s doesnotexist broken_symlink
mkfifo fifo
touch without_xattrs
touch with_xattrs
xattr -w key1 value with_xattrs
xattr -w key2 "" with_xattrs
touch without_flags
touch with_flags
chflags nodump with_flags
popd >/dev/null
$BORG create ::archive1 $SRC
$BORG list ::archive1 --json-lines > $META/archive1_list.json
rm -rf $SRC
# archive2
mkdir $SRC
pushd $SRC >/dev/null
sudo mkdir root_stuff
sudo mknod root_stuff/bdev_12_34 b 12 34
sudo mknod root_stuff/cdev_34_56 c 34 56
sudo touch root_stuff/strange_uid_gid # No user name or group name exists for this UID/GID!
sudo chown 54321:54321 root_stuff/strange_uid_gid
popd >/dev/null
$BORG create ::archive2 $SRC
$BORG list ::archive2 --json-lines > $META/archive2_list.json
sudo rm -rf $SRC/root_stuff
rm -rf $SRC
$BORG --version > $META/borg_version.txt
$BORG list :: --json > $META/repo_list.json
pushd $BORG_REPO >/dev/null
$TAR czf $ARCHIVE .
popd >/dev/null
$BORG delete :: 2> /dev/null
|