From 71aa7b587aa0ad944998323fbb4846dbd3b08bc4 Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Wed, 13 Sep 2017 08:59:11 +0000 Subject: [PATCH] connection plugin lxc_ssh --- tasks/connection_plugin_lxc_ssh.yml | 11 +++++++++++ tasks/main.yml | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 tasks/connection_plugin_lxc_ssh.yml diff --git a/tasks/connection_plugin_lxc_ssh.yml b/tasks/connection_plugin_lxc_ssh.yml new file mode 100644 index 0000000..1a8ae3f --- /dev/null +++ b/tasks/connection_plugin_lxc_ssh.yml @@ -0,0 +1,11 @@ +--- + +- name: connection plugin directory + file: + path: /usr/share/ansible/plugins/connection + state: directory + +- name: clone ansible-lxc-ssh + git: + repo: https://github.com/chifflier/ansible-lxc-ssh + dest: /usr/share/ansible/plugins/connection diff --git a/tasks/main.yml b/tasks/main.yml index e121120..fbaedf7 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,3 +1,5 @@ --- - include: setup_Debian.yml + +- include: connection_plugin_lxc_ssh.yml