This file is indexed.

/etc/init/boot-hooks/ensure-logdir-owner.conf is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
# Make sure the system log dir is always
# owned by the syslog group
start on boot-hooks WHEN=new-version

script
    if ! ls -ld /var/log|grep -q syslog; then
        chown root:syslog /var/log
    fi
end script