3b03acabf4
Based them on fedora-latest jobs Depends-On: https://review.openstack.org/604677 Depends-On: https://review.openstack.org/604688 Change-Id: I45622ac18685b809a091edba2df96fc8040138a8
17 lines
523 B
YAML
17 lines
523 B
YAML
- name: Test the configure-mirrors role
|
|
hosts: all
|
|
roles:
|
|
- role: configure-mirrors
|
|
mirror_fqdn: "{{ zuul_site_mirror_fqdn }}"
|
|
set_apt_mirrors_trusted: True
|
|
post_tasks:
|
|
- name: Set emacs package fact for gentoo
|
|
set_fact:
|
|
emacs_package: app-editors/emacs
|
|
when: ansible_distribution == 'Gentoo'
|
|
- name: Install a package to sanity check the mirror configuration
|
|
package:
|
|
name: "{{ emacs_package | default('emacs') }}"
|
|
state: "present"
|
|
become: yes
|