summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-test
blob: 73d9f13a74becad78e31a4c7c2f2985819d6f13d (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env 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())