summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-admin
blob: d57cd8b351b18a4d4fcf4c107cf225dff2585be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
""" bcfg2-admin is a script that helps to administer a Bcfg2
deployment. """

import sys
from Bcfg2.Server.Admin import CLI

if __name__ == '__main__':
    try:
        sys.exit(CLI().run())
    except KeyboardInterrupt:
        raise SystemExit(1)