Files @ eee778bc2d7c
Branch filter:

Location: majic-ansible-roles/roles/xmpp_server/files/ferm_xmpp.conf

branko
MAR-128: Upgraded tests for ROLE_NAME role:

- Switch to new Molecule configuration.
- Updated set-up playbook to use become: yes.
- Moved some preparatory steps outside of the main playbook (eases
idempotence tests).
- Updated tests to reference the yml inventory file.
- Updated tests to use new fixture (host instead of individual ones).
- Switched to extracting hostname instead of hard-coding it in a
couple of tests.
- Renamed hosts instances to include Debian version in their
hostnames.
- Fixed some linting issues.
domain (ip ip6) {
    table filter {
        chain INPUT {
            # XMPP client connections.
            proto tcp dport 5222 ACCEPT;
            proto tcp dport 5223 ACCEPT;
            # File proxying.
            proto tcp dport 5000 ACCEPT;
            # XMPP server connections.
            proto tcp dport 5269 ACCEPT;
        }
    }
}