This file is indexed.

/usr/share/vmdebootstrap/common/jessie-arm64.sh is in vmdebootstrap 1.4-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 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
#!/bin/sh

set -e

# define before sourcing common
WHO=`whoami`
USER='user/live'
SUITE='jessie'
SIZE='5G'
ARCH='arm64'
BINFMT='/usr/bin/qemu-aarch64-static'
SHARE_PATH='/usr/share/vmdebootstrap/common'
# needs a path for arch and task desktop
IMAGE_PATH='.'

. ${SHARE_PATH}/customise.lib

sudo vmdebootstrap \
 ${BASE_OPTS} --user ${USER} \
 --size ${SIZE} \
 --arch ${ARCH} \
 --foreign ${BINFMT} \
 --no-extlinux \
 --grub --use-uefi \
 --package dosfstools \
 --distribution ${SUITE} \
 --customize "${SHARE_PATH}/${SUITE}-${ARCH}-hook.sh" \
 --image ${IMAGE_PATH}/${SUITE}-${ARCH}.img \
 "$@"

# report results and check we have something valid.
ls -l ${IMAGE_PATH}/${SUITE}-${ARCH}.img
md5sum ${IMAGE_PATH}/${SUITE}-${ARCH}.img