Files @ d720faee712d
Branch filter:

Location: majic-ansible-roles/.yamllint.yml

branko
MAR-152: Revert path change for LDAP server unix socket test:

By default OpenLDAP server opens unix socket to listen on at
/var/run/slapd/ldapi, and this is what netstat will list as a
path (with e.g. netstat -xl).

Testinfra in turn relies on netstat output, and therefore a canonical
path has to be used. This might change in next release (Buster),
though - since Debian is trying to transition all applications to use
/run instead of /var/run.
---

# Extended the default linter configuration.
extends: default

rules:
  # Increase line length limit.
  line-length:
    max: 160

  # Single spaces within braces (better readability).
  braces:
    min-spaces-inside: 1
    max-spaces-inside: 1
    min-spaces-inside-empty: 0
    max-spaces-inside-empty: 0