nodejs: change GPG key name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jérémy Lecour 2021-06-08 11:19:26 +02:00 committed by Jérémy Lecour
parent f6dcce239b
commit ca40fad186
3 changed files with 7 additions and 6 deletions

View file

@ -26,6 +26,7 @@ The **patch** part changes incrementally at each release.
* apt: store keys in /etc/apt/trusted.gpg.d in ascii format
* certbot: sync_remote.sh is configurable
* evolinux-base: copy GPG key instead of using apt-key
* nodejs: change GPG key name
* ntpd: Add leapfile configuration setting to ntpd on debian 10+
* packweb-apache: install phpMyAdmin from buster-backports
* spamassassin: change dependency on evomaintenance

View file

@ -1,6 +1,6 @@
---
- name: NodeJS embedded GPG key is absent
- name: Yarn embedded GPG key is absent
apt_key:
id: "86E50310"
keyring: /etc/apt/trusted.gpg
@ -11,10 +11,10 @@
- nodejs
- yarn
- name: NodeJS GPG key is installed
- name: Yarn GPG key is installed
copy:
src: yarnpkg.asc
dest: /etc/apt/trusted.gpg.d/yarnpkg.asc
src: yarn.asc
dest: /etc/apt/trusted.gpg.d/yarn.asc
mode: "0644"
owner: root
group: root
@ -24,7 +24,7 @@
- nodejs
- yarn
- name: yarn sources list is available
- name: Yarn sources list is available
apt_repository:
repo: "deb https://dl.yarnpkg.com/debian/ stable main"
filename: yarn
@ -36,7 +36,7 @@
- nodejs
- yarn
- name: yarn is installed
- name: Yarn is installed
apt:
name: yarn
state: present