blob: 26d5eedf1918b8850abe9a2c4e51836d0f075648 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python
""" helper for encrypting/decrypting Cfg and Properties files """
import sys
from Bcfg2.Server.Encryption import CLI
if __name__ == '__main__':
sys.exit(CLI().run())
|