LookUp Plugin pykeepass eingebunden in Einrichtung (#11)

This commit is contained in:
Quotengrote 2020-08-20 15:26:16 +02:00 committed by GitHub
parent 72f4b65e16
commit 2bbdd26728
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,3 +12,18 @@
name: name:
- ansible-lint - ansible-lint
state: present state: present
# pykeepass wird durch geerlingguy.pip mit installiert
# https://github.com/viczem/ansible-keepass#readme
- name: create ~/.ansible/plugins/lookup
become: yes
file:
path: /home/mg/.ansible/plugins/lookup
state: directory
- name: Download keepass.py
become: yes
get_url:
url: https://raw.githubusercontent.com/viczem/ansible-keepass/master/keepass.py
dest: /home/mg/.ansible/plugins/lookup/keepass.py
backup: yes