This file is indexed.

/usr/share/dell/scripts/non-negotiable/03-ubuntu-drivers.sh is in dell-recovery 1.48.

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

. /usr/share/dell/scripts/fifuncs ""

IFHALT "Run ubuntu-drivers autoinstall"
echo 'APT::Get::AllowUnauthenticated "true";' > /etc/apt/apt.conf.d/99disable_authentication
for i in `ubuntu-drivers list`; do
    if ! dpkg-query -W $i >/dev/null 2>&1; then
        apt-get install --yes $i
    fi
done
rm /etc/apt/apt.conf.d/99disable_authentication
IFHALT "Done with ubuntu-drivers autoinstall"