This file is indexed.

/usr/sbin/zg-policy-rc.d is in policyrcd-script-zg2 0.1-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
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

CONFFILE="/etc/zg-policy-rc.d.conf"

if [ -z "$POLICYRCD" ]; then
  if [ -f "$CONFFILE" ]; then
    . $CONFFILE
  fi
fi

if [ -z "$POLICYRCD" ]; then
  for file in /usr/local/sbin/policy-rc.d /etc/policy-rc.d; do
    if [ -x "$file" ]; then
      POLICYRCD="$file"
      break
    fi
  done
fi

if [ -n "$POLICYRCD" ]; then
  $POLICYRCD "$@"
  exit $?
else
  exit 0
fi