Skip to content
Snippets Groups Projects
Commit e6b0529b authored by Pietsch, Martin's avatar Pietsch, Martin
Browse files

buxfixes: invalid pathes

parent 1e8f6ea1
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,11 @@
src: profile
dest: "{{ '%s/root/.profile' | format(linux_build_installer_root) }}"
- name: install ssh public key
copy:
src: "{{ '%s/ansible.pub' | format(ansible_certificates) }}"
dest: "{{ '%s/opt/ansible.pub' | format(linux_build_installer_root) }}"
- name: install basic installer scripts
copy:
src: "{{ _linux_install_file.name }}"
......@@ -30,9 +35,9 @@
mode: "{{ _linux_install_file.mode }}"
loop:
- {"name": "bootlocal.sh", "mode": "0775" }
- {"name": "genfstab", "mode": "0775"}
# - {"name": "genfstab", "mode": "0775"}
- {"name": "installer.sh", "mode": "0775"}
- {"name": "function.sh", "mode": "0775"}
# - {"name": "function.sh", "mode": "0775"}
loop_control:
loop_var: _linux_install_file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment