Alex Savatieiev | 6357683 | 2019-02-27 15:46:26 -0600 | [diff] [blame^] | 1 | # Salt Cfg Checker |
| 2 | # Local Environment file |
| 3 | |
| 4 | # Main log file of the tests |
| 5 | LOGFILE = '/var/log/salt-cfg-checker.log' |
| 6 | |
| 7 | # Salt master host to connect to |
| 8 | SALT_URL=127.0.0.1 |
| 9 | |
| 10 | # Salt master port. |
| 11 | # Note that you can safely execute second master (not on production) |
| 12 | # on the same cfg node with diferent port and set logging to ALL |
| 13 | SALT_PORT=6969 |
| 14 | |
| 15 | # User and password to auth on master. Can be found in /srv/salt/... |
| 16 | # No need for a password if environment is local |
| 17 | SALT_USER=salt |
| 18 | |
| 19 | # default timeout for salt calls |
| 20 | SALT_TIMEOUT=30 |
| 21 | |
| 22 | # Folder where salt points its filesystem: salt:// |
| 23 | SALT_FILE_ROOT=/usr/share/salt-formulas/env/ |
| 24 | |
| 25 | # Subfolder with scripts to be uploaded |
| 26 | SALT_SCRIPTS_FOLDER=salt-cfg-scripts |
| 27 | |
| 28 | # All nodes list file overide |
| 29 | # Can be set to 'auto' for automatic collection |
| 30 | # or check the example in 'etc/example._list' |
| 31 | SALT_NODE_LIST_FILE=auto |