Install ssh-ident globally.
This commit is contained in:
parent
1434d07b6d
commit
1f4273b3cf
1 changed files with 20 additions and 0 deletions
|
@ -1,2 +1,22 @@
|
||||||
---
|
---
|
||||||
# tasks file for glenux.ssh-ident
|
# 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue