blob: adfa96852e9c61df02f9411852ab245f4b90cb75 (
plain)
1
2
3
4
5
6
7
8
|
#!/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())
|