Browse Source

Replace tabs in pillar.example with spaces.

tabs cause salt to trigger a render error because tabs are 'illegal':
```
yaml.scanner.ScannerError: while scanning for the next token
found character '\t' that cannot start any token
  in "<unicode string>", line 33, column 32:
            pid: /var/run/nginx.pid\t\t### Directory location must exist
                                   ^
```
tags/v0.55.0
Alberto Chiusole 6 years ago
parent
commit
f4b3530e50
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pillar.example

+ 1
- 1
pillar.example View File

# on) are not processed and just upload the file from source # on) are not processed and just upload the file from source
worker_processes: 4 worker_processes: 4
load_module: modules/ngx_http_lua_module.so # this will be passed very first in configuration; otherwise nginx will fail to start load_module: modules/ngx_http_lua_module.so # this will be passed very first in configuration; otherwise nginx will fail to start
pid: /var/run/nginx.pid ### Directory location must exist
pid: /var/run/nginx.pid # Directory location must exist
events: events:
worker_connections: 768 worker_connections: 768
http: http:

Loading…
Cancel
Save