mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
|
#!/usr/bin/env python
|
||
|
'''
|
||
|
Execute the salt ssh system
|
||
|
'''
|
||
|
|
||
|
from salt.scripts import salt_ssh
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
salt_ssh()
|