mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
9 lines
153 B
Python
Executable file
9 lines
153 B
Python
Executable file
#!/usr/bin/env python
|
|
"""
|
|
Manage the authentication keys with salt-key
|
|
"""
|
|
|
|
from salt.scripts import salt_key
|
|
|
|
if __name__ == "__main__":
|
|
salt_key()
|