use FCQNs in Ansible module names
This commit is contained in:
parent
4fdc241727
commit
672647b927
|
@ -3,10 +3,10 @@
|
||||||
# nitter will run under
|
# nitter will run under
|
||||||
|
|
||||||
- name: Install libsass and redis-server
|
- name: Install libsass and redis-server
|
||||||
apt: name={{ packages }} state=present update_cache=yes
|
ansible.builtin.apt: name={{ packages }} state=present update_cache=yes
|
||||||
vars:
|
vars:
|
||||||
packages:
|
packages:
|
||||||
- libsass-dev
|
- libsass-dev
|
||||||
- redis-server
|
- redis-server
|
||||||
- name: Add the user that nitter will run as
|
- name: Add the user that nitter will run as
|
||||||
user: name={{ NITTER_USER }} shell=/bin/bash state=present
|
ansible.builtin.user: name={{ NITTER_USER }} shell=/bin/bash state=present
|
||||||
|
|
Loading…
Reference in New Issue