 5146c449d5
			
		
	
	
		5146c449d5
		
			
		
	
	
	
	
		
			
			Avoid this error:
```
      ID: salt-master
Function: pkg.installed
  Result: False
 Comment: Error occurred installing package(s). Additional info follows:
   errors:
       - Running scope as unit run-402.scope.
         Loaded plugins: ovl, ulninfo
         https://repo.saltproject.io/py3/redhat/7Server/x86_64/3002/repodata/repomd.xml:
             [Errno 14] HTTPS Error 404 - Not Found
         Trying other mirror.
         No package salt-master available.
         Error: Nothing to do
```
		
	
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| # vim: ft=yaml
 | |
| ---
 | |
| # Extend the `default` configuration provided by `yamllint`
 | |
| extends: 'default'
 | |
| 
 | |
| # Files to ignore completely
 | |
| # 1. All YAML files under directory `.cache/`, introduced during the GitLab CI run
 | |
| # 2. All YAML files under directory `.git/`
 | |
| # 3. All YAML files under directory `node_modules/`, introduced during the Travis run
 | |
| # 4. Any SLS files under directory `test/`, which are actually state files
 | |
| # 5. Any YAML files under directory `.kitchen/`, introduced during local testing
 | |
| # 6. `kitchen.vagrant.yml`, which contains Embedded Ruby (ERB) template syntax
 | |
| # 7. All YAML files heavily reliant on Jinja; these can be tackled in a subsequent PR
 | |
| ignore: |
 | |
|   .cache/
 | |
|   .git/
 | |
|   node_modules/
 | |
|   test/**/states/**/*.sls
 | |
|   .kitchen/
 | |
|   kitchen.vagrant.yml
 | |
|   salt/osfamilymap.yaml
 | |
|   salt/osmap.yaml
 | |
|   salt/osfingermap.yaml
 | |
| 
 | |
| yaml-files:
 | |
|   # Default settings
 | |
|   - '*.yaml'
 | |
|   - '*.yml'
 | |
|   - .salt-lint
 | |
|   - .yamllint
 | |
|   # SaltStack Formulas additional settings
 | |
|   - '*.example'
 | |
|   - test/**/*.sls
 | |
| 
 | |
| rules:
 | |
|   empty-values:
 | |
|     forbid-in-block-mappings: true
 | |
|     forbid-in-flow-mappings: true
 | |
|   line-length:
 | |
|     # Increase from default of `80`
 | |
|     # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
 | |
|     max: 88
 | |
|   octal-values:
 | |
|     forbid-implicit-octal: true
 | |
|     forbid-explicit-octal: true
 |