salt/scripts/salt-key

16 lines
233 B
Plaintext
Raw Normal View History

2011-03-24 05:51:18 +00:00
#!/usr/bin/env python2
'''
2011-08-15 04:38:13 +00:00
Manage the authentication keys with salt-key
2011-03-24 05:51:18 +00:00
'''
import salt.cli
def main():
'''
The main function
'''
saltkey = salt.cli.SaltKey()
saltkey.run()
if __name__ == '__main__':
main()