#!/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())
