salt/scripts/saltkey
2011-03-23 23:51:18 -06:00

16 lines
232 B
Python

#!/usr/bin/env python2
'''
Manage the authentication keys with saltkey
'''
import salt.cli
def main():
'''
The main function
'''
saltkey = salt.cli.SaltKey()
saltkey.run()
if __name__ == '__main__':
main()