ansible-role--ssh-ident/tasks/main.yml

23 lines
468 B
YAML
Raw Normal View History

2015-11-17 07:39:37 +00:00
---
# tasks file for glenux.ssh-ident
2015-11-17 09:29:34 +00:00
- 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