├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta ├── ansigenome.yml └── main.yml ├── tasks ├── configure_gnupg.yml ├── configure_inoticoming.yml ├── configure_reprepro.yml ├── main.yml ├── reprepro_init.yml └── snapshot_gnupg.yml └── templates ├── etc └── default │ └── inoticoming.j2 └── var └── lib └── reprepro ├── conf ├── distributions.j2 ├── email-changes.sh.j2 ├── incoming.j2 ├── options.j2 ├── pulls.j2 ├── updates.j2 └── uploaders.j2 ├── gnupg-key-template.j2 └── gnupg └── gpg.conf.j2 /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/ansigenome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/meta/ansigenome.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/configure_gnupg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/configure_gnupg.yml -------------------------------------------------------------------------------- /tasks/configure_inoticoming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/configure_inoticoming.yml -------------------------------------------------------------------------------- /tasks/configure_reprepro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/configure_reprepro.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/reprepro_init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/reprepro_init.yml -------------------------------------------------------------------------------- /tasks/snapshot_gnupg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/tasks/snapshot_gnupg.yml -------------------------------------------------------------------------------- /templates/etc/default/inoticoming.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/etc/default/inoticoming.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/distributions.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/distributions.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/email-changes.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/email-changes.sh.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/incoming.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/incoming.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/options.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/options.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/pulls.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/pulls.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/updates.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/conf/updates.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/conf/uploaders.j2: -------------------------------------------------------------------------------- 1 | {{ item.Contents }} 2 | 3 | -------------------------------------------------------------------------------- /templates/var/lib/reprepro/gnupg-key-template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/gnupg-key-template.j2 -------------------------------------------------------------------------------- /templates/var/lib/reprepro/gnupg/gpg.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-reprepro/HEAD/templates/var/lib/reprepro/gnupg/gpg.conf.j2 --------------------------------------------------------------------------------