This file is indexed.

/usr/share/zentyal-samba/initial-setup is in zentyal-samba 2.3.12+quantal1ubuntu1.

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

set -e

QUARANTINE_DIR=/var/lib/zentyal/quarantine/
if [ ! -d $QUARANTINE_DIR ]; then
    mkdir -p $QUARANTINE_DIR
fi
chmod 730 $QUARANTINE_DIR

exit 0