Rename tasks, fix apt_key deprecate warnings
This commit is contained in:
parent
b8c941f812
commit
b84f1bb81f
3 changed files with 7 additions and 5 deletions
|
@ -10,9 +10,9 @@
|
||||||
ansible.builtin.import_tasks: user.yml
|
ansible.builtin.import_tasks: user.yml
|
||||||
tags: user
|
tags: user
|
||||||
|
|
||||||
- name: Zammad
|
- name: Installation
|
||||||
ansible.builtin.import_tasks: zammad.yml
|
ansible.builtin.import_tasks: installation.yml
|
||||||
tags: zammad
|
tags: installation
|
||||||
|
|
||||||
- name: Ruby
|
- name: Ruby
|
||||||
ansible.builtin.import_tasks: ruby.yml
|
ansible.builtin.import_tasks: ruby.yml
|
||||||
|
|
|
@ -37,9 +37,11 @@
|
||||||
- zlib1g-dev
|
- zlib1g-dev
|
||||||
|
|
||||||
- name: "Packages | Add nodejs repository key"
|
- name: "Packages | Add nodejs repository key"
|
||||||
ansible.builtin.apt_key:
|
ansible.builtin.get_url:
|
||||||
url: https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key
|
url: https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key
|
||||||
keyring: /etc/apt/trusted.gpg.d/nodesource.asc
|
dest: /etc/apt/trusted.gpg.d/nodesource.asc
|
||||||
|
mode: "0644"
|
||||||
|
force: true
|
||||||
|
|
||||||
- name: "Packages | Add nodejs repository"
|
- name: "Packages | Add nodejs repository"
|
||||||
ansible.builtin.apt_repository:
|
ansible.builtin.apt_repository:
|
||||||
|
|
Loading…
Reference in a new issue