This file is indexed.

/usr/share/doc/bacula-common/examples/conf/kernsconfig is in bacula-common 7.0.5+dfsg-4build1.

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
#!/bin/sh
#
# This is Kern's configure script for a test Bacula
#
CFLAGS="-g -O2 -Wall" ./configure \
    --sbindir=$HOME/bacula/bin \
    --sysconfdir=$HOME/bacula/bin \
    --with-pid-dir=$HOME/bacula/bin/working \
    --with-subsys-dir=$HOME/bacula/bin/working \
    --enable-smartalloc \
    --with-mysql=$HOME/mysql \
    --with-working-dir=$HOME/bacula/working \
    --with-dump-email=$USER \
    --with-job-email=$USER

exit 0