#!/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())
