system-config/playbooks/roles/reprepro/tasks/ubuntu-cloud-archive.yaml
Ian Wienand 3eceba5749 reprepro: convert to Ansible
This converts the reprepro configuration from our existing puppet to
Ansible.

This takes a more direct approach; the templating done by the puppet
version started simple but over the years grew several different
options to handle various use-cases.  This means you not only had to
understand the rather obscure reprepro configuration, but then *also*
figure out how to translate that from our puppet template layers.

Here the configuration files are kept directly (they were copied from
the existing mirror-update.openstack.org) and deployed with some light
wrapper tasks in reprepro/tasks/utils which avoids most duplication.

Note the initial cron jobs are left disabled so we can run some manual
testing before letting it go automatically.

Change-Id: I96a9ff1efbf51c4164621028b7a3a1e2e1077d5c
2020-10-19 14:06:57 +11:00

17 lines
482 B
YAML

- name: Set Ubuntu Cloud Archive config
set_fact:
_string_name: 'Ubuntu Cloud Archive'
_dir: 'ubuntu-cloud-archive'
_volume: 'mirror.ubuntu-cloud'
_keys:
- { key_id: '5EDB1B62EC4926EA', file: 'ubuntu-cloud-archive.asc' }
- name: Deploy Ubuntu Cloud Archive keys
include_tasks: utils/keys.yaml
- name: Copy Ubuntu Cloud Archive config
include_tasks: utils/copy-config.yaml
- name: Install Ubuntu Cloud Archive cron job
include_tasks: utils/cron.yaml