mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
16 lines
232 B
Python
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()
|