mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add the saltkey script
This commit is contained in:
parent
0bfdf9b744
commit
fb4e7483a2
1 changed files with 15 additions and 0 deletions
15
scripts/saltkey
Normal file
15
scripts/saltkey
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/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()
|
Loading…
Add table
Reference in a new issue