Skip to content
Snippets Groups Projects
Select Git revision
  • b32b1b02cc7fd9cc47d4c9e9424d5b78d596c5f0
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
22 results

README.md

Blame
    • Thomas Woerner's avatar
      a7e532a4
      ipa[server,replica]: New variables to set firewalld zone · a7e532a4
      Thomas Woerner authored
      The new variables ipa[server,replica]_firewalld_zone have been added to
      be able to set the zone in which the needed services for IPA are enabled.
      
      New tasks have been added to check if the zone is available in the runtime
      and also permamanet environment.
      
      The code to enable firewalld has been moved out of thee
      ipa[server,replica]_install_packages blocks to make sure that the firewalld
      service is also enabled if the package is already installed.
      
      Fixes: issue #177 (How to set up firewalld zones?)
      a7e532a4
      History
      ipa[server,replica]: New variables to set firewalld zone
      Thomas Woerner authored
      The new variables ipa[server,replica]_firewalld_zone have been added to
      be able to set the zone in which the needed services for IPA are enabled.
      
      New tasks have been added to check if the zone is available in the runtime
      and also permamanet environment.
      
      The code to enable firewalld has been moved out of thee
      ipa[server,replica]_install_packages blocks to make sure that the firewalld
      service is also enabled if the package is already installed.
      
      Fixes: issue #177 (How to set up firewalld zones?)
    .yamllint 362 B
    ---
    ignore: |
      /.tox/
      /.venv/
      /.github/
    
    extends: default
    
    rules:
      braces:
        max-spaces-inside: 1
        level: error
      brackets:
        max-spaces-inside: 1
        level: error
      truthy:
        allowed-values: ["yes", "no", "true", "false", "True", "False"]
        level: error
      line-length:
        max: 160
      # Disabled rules
      indentation: disable
      comments: disable