This file is indexed.

/etc/NetworkManager/dispatcher.d/002_NetMan_pdnsd is in pdnsd 1.2.9a-par-3.

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
#!/bin/bash
set -e
# Restart pdnsd after the connection is made
if [ $1 == "wlan0" ] && [ $2 == "up" ]; then
 /etc/init.d/pdnsd restart;
fi