summaryrefslogtreecommitdiffstats
path: root/src/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'src/sbin')
-rwxr-xr-xsrc/sbin/bcfg2-crypt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sbin/bcfg2-crypt b/src/sbin/bcfg2-crypt
new file mode 100755
index 000000000..26d5eedf1
--- /dev/null
+++ b/src/sbin/bcfg2-crypt
@@ -0,0 +1,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())