mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
17 lines
235 B
Python
17 lines
235 B
Python
#!/usr/bin/env python2
|
|
'''
|
|
Manage the authentication keys with salt-key
|
|
'''
|
|
|
|
import salt.cli
|
|
|
|
|
|
def main():
|
|
'''
|
|
The main function
|
|
'''
|
|
saltkey = salt.cli.SaltKey()
|
|
saltkey.run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|