From e805979eab74ba638113c3654212d24cce40b8cf Mon Sep 17 00:00:00 2001 From: Martin Pietsch <martin.pietsch@tu-dresden.de> Date: Mon, 18 Nov 2019 09:32:00 +0100 Subject: [PATCH] added installer mirror settings --- tasks/buildinstaller.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tasks/buildinstaller.yml b/tasks/buildinstaller.yml index ccbd828..0cc6087 100644 --- a/tasks/buildinstaller.yml +++ b/tasks/buildinstaller.yml @@ -28,6 +28,11 @@ src: "{{ '%s/ansible.pub' | format(ansible_sshkeys) }}" dest: "{{ '%s/opt/ansible.pub' | format(linux_build_installer_root) }}" +- name: set linux installer repository + copy: + dest: "{{ '%s/opt/tcemirror' | format(linux_build_installer_root) }}" + content: "{{ linux_installer_home_mirror }}" + - name: install basic installer scripts copy: src: "{{ _linux_install_file.name }}" @@ -35,9 +40,8 @@ mode: "{{ _linux_install_file.mode }}" loop: - {"name": "bootlocal.sh", "mode": "0775" } -# - {"name": "genfstab", "mode": "0775"} + - {"name": "dbgmode", "mode": "0755" } - {"name": "installer.sh", "mode": "0775"} - - {"name": "installer.config", "mode": "0755"} - {"name": "functions.sh", "mode": "0775"} - {"name": "diskspreparation.sh", "mode": "0775"} loop_control: -- GitLab