From 83edd3a996c506b6a1988d0c68214e9a849397d8 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 23 Oct 2014 15:13:36 +0200 Subject: controller: autoconfiscate First part of converting controller to autoconf/automake solution. * .gitignore: New gitignore; autotools ignores. * Makefile.am: New file. * get_machine: Renamed to template bin/dtf-get-machine.in. * bin/dtf-get-machine.in: New template based on get_machine. * run_remote: Renamed to template bin/dtf-run-remote.in. * bin/dtf-run-remote.in: New binary template from run_remote. * build: New bootstrap like helper script (git-only). * configure.ac: New file. * etc/dtf.sh.in: Likewise. * ansible_helpers/wait-for-ssh: Renamed to libexec/dtf-wait-for-ssh. * share/dtf-controller/parse_credsfile: Reworked script for parsing OS credentials. * parse_credsfile: Moved to share/dtf-controller. * libexec/dtf-wait-for-ssh: Renamed from wait-for-ssh. * ansible/*: Moved into share/dtf-controller/ansible/*. * share/dtf-controller/ansible/vars/generated-vars.yml.in: New template file exporting configure-time variables into playbooks. --- .../dtf-controller/ansible/playbooks/include/download-results.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 controller/share/dtf-controller/ansible/playbooks/include/download-results.yml (limited to 'controller/share/dtf-controller/ansible/playbooks/include/download-results.yml') diff --git a/controller/share/dtf-controller/ansible/playbooks/include/download-results.yml b/controller/share/dtf-controller/ansible/playbooks/include/download-results.yml new file mode 100644 index 0000000..4404e08 --- /dev/null +++ b/controller/share/dtf-controller/ansible/playbooks/include/download-results.yml @@ -0,0 +1,5 @@ +- shell: cp -f /var/tmp/dtf-run.overview /var/tmp/dtf/ + +- shell: cd /var/tmp ; tar -czf dtf.tar.gz dtf + +- fetch: src=/var/tmp/dtf.tar.gz dest="{{ opt_workdir }}/" flat=yes -- cgit