This file is indexed.

/usr/sbin/bcfg2-test is in bcfg2-server 1.4.0~pre2+git141-g6d40dace6358-1ubuntu1.

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
#! /usr/bin/python
""" This tool verifies that all clients known to the server build
without failures """

import sys
from Bcfg2.Server.Test import CLI

if __name__ == "__main__":
    sys.exit(CLI().run())