test more
This commit is contained in:
parent
a24ca9b843
commit
33291dee58
3 changed files with 8 additions and 6 deletions
|
@ -24,6 +24,12 @@
|
||||||
- import_tasks: "{{ tasks_path }}/cloud_setup_basic.yml"
|
- import_tasks: "{{ tasks_path }}/cloud_setup_basic.yml"
|
||||||
- name: set hostname (required by some services, at least postfix need it)
|
- name: set hostname (required by some services, at least postfix need it)
|
||||||
hostname: name="{{inventory_hostname}}"
|
hostname: name="{{inventory_hostname}}"
|
||||||
|
- include_vars: dir=/srv/web/infra/ansible/vars/all/ ignore_files=README
|
||||||
|
- debug: var=FedoraRawhideNumber
|
||||||
|
- debug: var=FedoraBranchedNumber
|
||||||
|
- debug: var=FedoraCycleNumber
|
||||||
|
- debug: var=FedoraPreviousCycleNumber
|
||||||
|
- debug: var=FedoraPreviousPreviousCycleNumber
|
||||||
|
|
||||||
- import_playbook: "/srv/web/infra/ansible/playbooks/include/happy_birthday.yml myhosts=arm-packager"
|
- import_playbook: "/srv/web/infra/ansible/playbooks/include/happy_birthday.yml myhosts=arm-packager"
|
||||||
|
|
||||||
|
@ -40,10 +46,6 @@
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
|
- import_tasks: "{{ tasks_path }}/yumrepos.yml"
|
||||||
- include_vars: dir=/srv/web/infra/ansible/vars/all/ ignore_files=README
|
|
||||||
- debug: var=FedoraRawhideNumber
|
|
||||||
- debug: var=FedoraBranchedNumber
|
|
||||||
- debug: var=FedoraOldCycleNumber
|
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- base
|
- base
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
FedoraBranchedNumber: "{{ FedoraCycleNumber|int + 1 }}"
|
FedoraBranchedNumber: "{{ FedoraCycleNumber|int + 1 if FedoraBranched else 0 }}"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
FedoraPreviousPreviousCycleNumber: "{{ FedoraCycleNumber|int - 1 }}"
|
FedoraPreviousPreviousCycleNumber: "{{ FedoraCycleNumber|int - 2 if FedoraPreviousPrevious else 0 }}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue