This file is indexed.

/etc/ppp/ip-down.d/0000usepeerdns is in ppp 2.4.5-5ubuntu1.

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

# exit if the resolvconf package is installed
[ -x /sbin/resolvconf ] && exit 0

# follow any symlink to find the real file
if [ -e /etc/resolv.conf ]; then
  REALRESOLVCONF=$(readlink --canonicalize /etc/resolv.conf)
else
  REALRESOLVCONF=/etc/resolv.conf
fi

# if an old resolv.conf file exists, restore it
if [ -e $REALRESOLVCONF.pppd-backup.$PPP_IFACE ]; then
  mv -f $REALRESOLVCONF.pppd-backup.$PPP_IFACE $REALRESOLVCONF

  # restart nscd because resolv.conf has changed
  if [ -e /var/run/nscd.pid ]; then
    /etc/init.d/nscd restart || true
  fi
fi

exit 0