This file is indexed.

/usr/share/initramfs-tools/scripts/casper-bottom/43disable_updateinitramfs is in casper 1.394.

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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh
# Fix for LP#150188

PREREQ=""
DESCRIPTION="Possibly disabling update-initramfs (useless on a live CD)..."

prereqs()
{
       echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
       prereqs
       exit 0
       ;;
esac

. /scripts/casper-functions

log_begin_msg "$DESCRIPTION"

chroot /root dpkg-divert --add --rename --quiet \
        /usr/sbin/update-initramfs

# Running off a USB disk or other writable media.
if [ ! -e /root/usr/sbin/update-initramfs ] && \
   [ ! -L /root/usr/sbin/update-initramfs ]; then
    if [ -w /root/cdrom ] && \
       # rw is guaranteed to be first.
       grep -q ' /root/cdrom rw[, ]' /proc/self/mountinfo; then

        ln -s /usr/share/casper/casper-update-initramfs \
            /root/usr/sbin/update-initramfs
    else
        cat > /root/usr/sbin/update-initramfs <<EOF
#! /bin/sh
echo "update-initramfs is disabled since running on read-only media"
exit 0
EOF
        chmod 755 /root/usr/sbin/update-initramfs
    fi
fi

log_end_msg