summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2
blob: eca7c3395003347b756e53db58b10ee8ea6f08e7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
"""Bcfg2 Client"""

import sys
from Bcfg2.Options import get_parser
from Bcfg2.Client import Client

if __name__ == '__main__':
    get_parser("Bcfg2 client", components=[Client]).parse()
    sys.exit(Client().run())