Files @ 91f1fe045f28
Branch filter:

Location: majic-ansible-roles/roles/backup_server/templates/ferm_backup.conf.j2

branko
MAR-73: Fixed the virtualenv wrapper script in wsgi_website role to properly escape arguments.
{% if backup_clients -%}
table filter {
    chain INPUT {
        saddr ({% for client in backup_clients %} {{ client.ip }}{% endfor %}) @subchain "backup_in" {
            # SSH
            proto tcp dport 2222 ACCEPT;
        }
    }
}
{%- endif %}