From 1f4273b3cfc06a63197de3642f3d2b3ad6e0db40 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 17 Nov 2015 10:29:34 +0100 Subject: [PATCH] Install ssh-ident globally. --- tasks/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 2071113..19fd8b1 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,2 +1,22 @@ --- # tasks file for glenux.ssh-ident +- name: Install devscripts + apt: + pkg=devscripts + state=present + install_recommends=no + +- name: Fetch ssh-ident sources + register: ssh_ident_git + git: + repo=https://github.com/ccontavalli/ssh-ident.git + dest=/usr/local/src/ssh-ident + update=yes + accept_hostkey=yes + +- name: Install ssh-ident globally + file: + src=/usr/local/src/ssh-ident/ssh-ident + dest=/usr/local/bin/ssh-ident + state=link +