From e6b0529b8d04b28ba8fbcd59ba96f17e70db4408 Mon Sep 17 00:00:00 2001
From: Martin Pietsch <martin.pietsch@tu-dresden.de>
Date: Thu, 10 Oct 2019 13:20:56 +0200
Subject: [PATCH] buxfixes: invalid pathes

---
 tasks/buildinstaller.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/tasks/buildinstaller.yml b/tasks/buildinstaller.yml
index 6f9541d..5068177 100644
--- a/tasks/buildinstaller.yml
+++ b/tasks/buildinstaller.yml
@@ -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
 
-- 
GitLab