summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-info
blob: 3d9b0d87bed2ad234be5ff8f8f33ab5f21155810 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
"""This tool loads the Bcfg2 core into an interactive debugger."""

import sys
from Bcfg2.Server.Info import CLI


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