Use FQCN for module names

This commit is contained in:
Timo Makinen 2022-02-03 16:40:16 +00:00
parent be273475c9
commit 8ba9437c89
17 changed files with 52 additions and 52 deletions

View file

@ -1,7 +1,7 @@
---
- name: install dependencies
package:
ansible.builtin.package:
name: "{{ item }}"
state: installed
with_items:
@ -9,14 +9,14 @@
- python3
- name: copy package
git:
ansible.builtin.git:
dest: /usr/local/src/opencollab
repo: "https://github.com/graphingwiki/opencollab.git"
umask: "0022"
version: python3
- name: install package
pip:
ansible.builtin.pip:
name: /usr/local/src/opencollab
umask: "0022"
executable: pip3