mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
11 lines
150 B
Python
Executable File
11 lines
150 B
Python
Executable File
#!/usr/bin/python
|
|
'''
|
|
Manage the authentication keys with salt-key
|
|
'''
|
|
|
|
from salt.scripts import salt_key
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_key()
|