From: Srinivasan Date: Wed, 19 May 2021 14:05:12 +0000 (+0530) Subject: copy config files of eg X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F90%2F4290%2F2;p=ealt-edge.git copy config files of eg Signed-off-by: Srinivasan Change-Id: I65bd2f6d731d77d47fa7fcd11106a718bc120e92 --- diff --git a/ocd/infra/playbooks/roles/egallery-tar/tasks/install.yml b/ocd/infra/playbooks/roles/egallery-tar/tasks/install.yml index d42dc84..b8e9fc2 100644 --- a/ocd/infra/playbooks/roles/egallery-tar/tasks/install.yml +++ b/ocd/infra/playbooks/roles/egallery-tar/tasks/install.yml @@ -38,8 +38,26 @@ command: cp hosts-aio /tmp/eg_download/deploy/ansible-all-x86-latest/install args: chdir: "{{playbook_dir}}" + when: ansible_architecture == 'x86_64' - name: Set inventory file for muno command: cp hosts-muno /tmp/eg_download/deploy/ansible-all-x86-latest/install args: chdir: "{{playbook_dir}}" + when: ansible_architecture == 'x86_64' + +- name: Set var.yml to eg path + # yamllint disable rule:line-length + command: cp var.yml /tmp/eg_download/deploy/ansible-all-x86-latest/install + # yamllint disable rule:line-length + args: + chdir: "{{playbook_dir}}" + when: ansible_architecture == 'x86_64' + +- name: Set default-var.yml to eg path + # yamllint disable rule:line-length + command: cp default-var.yml /tmp/eg_download/deploy/ansible-all-x86-latest/install + # yamllint disable rule:line-length + args: + chdir: "{{playbook_dir}}" + when: ansible_architecture == 'x86_64'