This file is indexed.

/etc/switchconf/after.d/20pcmcia is in switchconf 0.0.9-2.

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
#!/bin/sh
if [ -x /etc/init.d/pcmcia ] ; then
    if which invoke-rc.d >/dev/null 2>&1; then
	invoke-rc.d pcmcia start
    else
	/etc/init.d/pcmcia start
    fi
fi