This file is indexed.

/usr/bin/salt-call is in salt-common 2017.7.4+dfsg1-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#!/usr/bin/python3
'''
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()