saltstack/salt

View on GitHub
scripts/salt-call

Summary

Maintainability
Test Coverage
#!/usr/bin/env python
'''
Directly call a salt command in the modules, does not require a running salt
minion to run.
'''

from salt.scripts import salt_call


if __name__ == '__main__':
    salt_call()