gitextract_axlon5gn/ ├── .ansible-lint ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .yamllint ├── CHANGELOG.md ├── LICENSE ├── README.md ├── defaults/ │ └── main.yml ├── handlers/ │ └── main.yml ├── meta/ │ └── main.yml ├── molecule/ │ ├── pdns-48/ │ │ ├── converge.yml │ │ └── molecule.yml │ ├── pdns-49/ │ │ ├── converge.yml │ │ └── molecule.yml │ ├── pdns-50/ │ │ ├── converge.yml │ │ └── molecule.yml │ ├── pdns-master/ │ │ ├── converge.yml │ │ └── molecule.yml │ ├── pdns-os-repos/ │ │ ├── converge.yml │ │ └── molecule.yml │ └── resources/ │ ├── Dockerfile.archlinux-systemd.j2 │ ├── Dockerfile.debian-systemd.j2 │ ├── Dockerfile.el-systemd.j2 │ ├── cleanup.yml │ ├── create.yml │ ├── destroy.yml │ ├── prepare.yml │ ├── tests/ │ │ ├── all/ │ │ │ └── test_common.py │ │ ├── backend-bind/ │ │ │ └── test_backend_bind.py │ │ ├── backend-lmdb/ │ │ │ └── test_backend_lmdb.py │ │ ├── backend-mariadb/ │ │ │ └── test_backend_mariadb.py │ │ ├── backend-mysql/ │ │ │ └── test_backend_mysql.py │ │ ├── backend-postgresql/ │ │ │ └── test_backend_postgresql.py │ │ ├── backend-sqlite/ │ │ │ └── test_backend_sqlite.py │ │ ├── backend-zones/ │ │ │ └── test_backend_zones.py │ │ ├── repo-48/ │ │ │ └── test_repo_48.py │ │ ├── repo-49/ │ │ │ └── test_repo_49.py │ │ ├── repo-50/ │ │ │ └── test_repo_50.py │ │ ├── repo-master/ │ │ │ └── test_repo_master.py │ │ ├── service-mask/ │ │ │ └── test_service_mask.py │ │ ├── systemd-no-override/ │ │ │ └── test_override.py │ │ └── systemd-override/ │ │ └── test_override.py │ └── vars/ │ ├── molecule.yml │ ├── pdns-backend-bind.yml │ ├── pdns-backend-lmdb.yml │ ├── pdns-backend-mariadb.yml │ ├── pdns-backend-mysql.yml │ ├── pdns-backend-postgresql.yml │ ├── pdns-backend-sqlite3.yml │ ├── pdns-common.yml │ ├── pdns-no-overrides.yml │ ├── pdns-os-repos.yml │ ├── pdns-repo-48.yml │ ├── pdns-repo-49.yml │ ├── pdns-repo-50.yml │ └── pdns-repo-master.yml ├── requirements.yml ├── tasks/ │ ├── configure.yml │ ├── database-lmdb.yml │ ├── database-mysql.yml │ ├── database-pgsql.yml │ ├── database-sqlite3.yml │ ├── inspect.yml │ ├── install.yml │ ├── main.yml │ ├── repo-Debian.yml │ ├── repo-RedHat.yml │ └── selinux.yml ├── templates/ │ ├── override-service.systemd.conf.j2 │ ├── pdns.conf.j2 │ └── pdns.pin.j2 ├── test-requirements.txt ├── tox.ini └── vars/ ├── Archlinux.yml ├── Debian.yml ├── RedHat.yml ├── Ubuntu-20.yml └── main.yml