Saltstack Official Apache Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

osfingermap.yaml 1.8KB

fix(yamllint): fix all errors ```bash apache-formula$ yamllint -s . ./pillar.example 2:1 warning missing document start "---" (document-start) 5:26 warning truthy value should be one of [false, true] (truthy) 50:18 warning too few spaces before comment (comments) 51:16 warning truthy value should be one of [false, true] (truthy) 52:57 warning too few spaces before comment (comments) 52:89 error line too long (104 > 88 characters) (line-length) 67:33 warning truthy value should be one of [false, true] (truthy) 67:38 warning too few spaces before comment (comments) 69:31 warning too few spaces before comment (comments) 70:8 warning missing starting space in comment (comments) 75:53 warning too few spaces before comment (comments) 75:89 error line too long (98 > 88 characters) (line-length) 76:55 warning too few spaces before comment (comments) 76:89 error line too long (101 > 88 characters) (line-length) 78:50 warning too few spaces before comment (comments) 79:89 error line too long (95 > 88 characters) (line-length) 82:47 warning too few spaces before comment (comments) 83:54 warning too few spaces before comment (comments) 83:89 error line too long (100 > 88 characters) (line-length) 84:58 warning too few spaces before comment (comments) 84:89 error line too long (109 > 88 characters) (line-length) 93:32 warning too few spaces before comment (comments) 100:89 error line too long (105 > 88 characters) (line-length) 101:33 error trailing spaces (trailing-spaces) 102:16 warning truthy value should be one of [false, true] (truthy) 231:20 warning truthy value should be one of [false, true] (truthy) 242:32 warning too few spaces before comment (comments) 249:20 warning truthy value should be one of [false, true] (truthy) 254:20 warning truthy value should be one of [false, true] (truthy) 260:21 warning truthy value should be one of [false, true] (truthy) 283:8 warning missing starting space in comment (comments) 284:8 warning missing starting space in comment (comments) 297:15 warning too few spaces before comment (comments) 328:18 warning truthy value should be one of [false, true] (truthy) 330:20 warning truthy value should be one of [false, true] (truthy) 342:15 error empty value in block mapping (empty-values) 345:18 warning truthy value should be one of [false, true] (truthy) 348:18 warning truthy value should be one of [false, true] (truthy) 355:18 warning truthy value should be one of [false, true] (truthy) 358:89 error line too long (91 > 88 characters) (line-length) 359:26 warning truthy value should be one of [false, true] (truthy) 362:89 error line too long (99 > 88 characters) (line-length) 365:89 error line too long (267 > 88 characters) (line-length) 367:21 warning truthy value should be one of [false, true] (truthy) 369:26 warning truthy value should be one of [false, true] (truthy) 371:1 error too many blank lines (1 > 0) (empty-lines) ./apache/osfingermap.yaml 3:1 warning missing document start "---" (document-start) ./apache/modsecurity.yaml 4:1 warning missing document start "---" (document-start) 6:18 warning truthy value should be one of [false, true] (truthy) 7:20 warning truthy value should be one of [false, true] (truthy) 14:18 warning truthy value should be one of [false, true] (truthy) 15:20 warning truthy value should be one of [false, true] (truthy) 22:18 warning truthy value should be one of [false, true] (truthy) 23:20 warning truthy value should be one of [false, true] (truthy) ./apache/defaults.yaml 4:1 warning missing document start "---" (document-start) 5:26 warning truthy value should be one of [false, true] (truthy) 7:19 warning truthy value should be one of [false, true] (truthy) 10:18 warning truthy value should be one of [false, true] (truthy) 11:20 warning truthy value should be one of [false, true] (truthy) ./apache/oscodenamemap.yaml 4:1 warning missing document start "---" (document-start) 4:8 error trailing spaces (trailing-spaces) 9:8 error trailing spaces (trailing-spaces) 14:7 error trailing spaces (trailing-spaces) 19:6 error trailing spaces (trailing-spaces) 24:8 error trailing spaces (trailing-spaces) 29:9 error trailing spaces (trailing-spaces) 34:7 error trailing spaces (trailing-spaces) 39:8 error trailing spaces (trailing-spaces) 44:8 error trailing spaces (trailing-spaces) 50:9 error trailing spaces (trailing-spaces) 61:1 error too many blank lines (1 > 0) (empty-lines) ./apache/osfamilymap.yaml 4:1 warning missing document start "---" (document-start) 16:89 error line too long (104 > 88 characters) (line-length) 43:89 error line too long (105 > 88 characters) (line-length) 56:16 warning truthy value should be one of [false, true] (truthy) 114:11 error empty value in block mapping (empty-values) 114:11 error trailing spaces (trailing-spaces) ./test/salt/pillar/default.sls 5:26 warning truthy value should be one of [false, true] (truthy) 7:18 warning truthy value should be one of [false, true] (truthy) 8:20 warning truthy value should be one of [false, true] (truthy) ```
5 vuotta sitten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. #
  4. # Setup variables using grains['osfinger'] based logic.
  5. # You just need to add the key:values for an `osfinger` that differ
  6. # from `defaults.yaml` + `osarch.yaml` + `os_family.yaml` + `osmap.yaml`.
  7. # Only add an `osfinger` which is/will be supported by the formula.
  8. #
  9. # If you do not need to provide defaults via the `os_finger` grain,
  10. # you will need to provide at least an empty dict in this file, e.g.
  11. # osfingermap: {}
  12. ---
  13. default:
  14. version: '2.4'
  15. # Suse
  16. Leap-42:
  17. version: '2.2'
  18. # os: el
  19. Red Hat Enterprise Linux Server-6:
  20. version: '2.2'
  21. service_state: skip
  22. pkg:
  23. deps:
  24. - epel-release
  25. - mod_ssl
  26. - mod_security
  27. - mod_geoip
  28. Red Hat Enterprise Linux Server-7:
  29. version: '2.4'
  30. Oracle Linux Server-6:
  31. version: '2.2'
  32. Oracle Linux Server-7:
  33. version: '2.4'
  34. # Debian-10: {}
  35. # Debian-9: {}
  36. # Debian-8: {}
  37. Ubuntu-12.04:
  38. version: '2.2'
  39. # Ubuntu-16.04: {}
  40. # Ubuntu-18.04: {}
  41. # Fedora-31: {}
  42. # Fedora-30: {}
  43. CentOS Linux-8:
  44. version: '2.4'
  45. pkg:
  46. deps:
  47. - epel-release
  48. - mod_ssl
  49. - mod_security
  50. - GeoIP
  51. # mod_geoip
  52. CentOS Linux-7:
  53. version: '2.4'
  54. conf_mod_wsgi: '/etc/httpd/conf.modules.d/10-wsgi.conf'
  55. pkg:
  56. deps:
  57. - epel-release
  58. - mod_ssl
  59. - mod_security
  60. - GeoIP
  61. - mod_geoip
  62. CentOS-6:
  63. version: '2.2'
  64. service_state: skip # necessary for cent6
  65. pkg:
  66. deps:
  67. - epel-release
  68. - mod_ssl
  69. - mod_security
  70. - mod_geoip
  71. Amazon Linux AMI-2014:
  72. version: '2.2'
  73. Amazon Linux AMI-2015:
  74. version: '2.2'
  75. Amazon Linux AMI-2016:
  76. version: '2.2'
  77. Amazon Linux-2:
  78. version: '2.4'
  79. pkg:
  80. deps:
  81. # mod_ssl
  82. - mod_security
  83. - GeoIP
  84. # Amazon Linux AMI-2018: {}
  85. # Leap-15: {}
  86. # FreeBSD-12: {}
  87. # Windows-8.1: {}
  88. # Gentoo-2: {}