#1447 [FMN-old] Fix playbook variable undefined error
Merged 11 months ago by zlopez. Opened 11 months ago by zlopez.
fedora-infra/ zlopez/ansible fix_notifs  into  main

@@ -3,7 +3,9 @@ 

  # NOTE: make sure there is room/space for this server on the vmhost

  # NOTE: most of these vars_path come from group_vars/mirrorlist or from hostvars

  

- - import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=notifs_backend:notifs_backend_stg"

+ - import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml"

+   vars:

+     myhosts: "notifs_backend:notifs_backend_stg"

  

  - name: dole out the generic configuration

    hosts: notifs_backend:notifs_backend_stg

@@ -1,9 +1,12 @@ 

+ ---

  # create a new notifs-web server

  # NOTE: should be used with --limit most of the time

  # NOTE: make sure there is room/space for this server on the vmhost

  # NOTE: most of these vars_path come from group_vars/notifs-web* or from hostvars

  

- - import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=notifs_web:notifs_web_stg"

+ - import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml"

+   vars:

+     myhosts: "notifs_backend:notifs_backend_stg"

  

  - name: make the box be real

    hosts: notifs_web:notifs_web_stg
@@ -11,17 +14,17 @@ 

    gather_facts: True

  

    vars_files:

-    - /srv/web/infra/ansible/vars/global.yml

-    - "/srv/private/ansible/vars.yml"

-    - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml

+     - /srv/web/infra/ansible/vars/global.yml

+     - "/srv/private/ansible/vars.yml"

+     - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml

  

    roles:

    - base

    - rkhunter

    - nagios_client

    - hosts

-   - { role: openvpn/client,

-       when: env != "staging" }

+   - {role: openvpn/client,

+      when: env != "staging"}

    - ipa/client

    - collectd/base

    - mod_wsgi

1 new commit added

  • Fix yamllint errors
11 months ago

Pull-Request has been merged by zlopez

11 months ago