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 * apt: store keys in /etc/apt/trusted.gpg.d in ascii format
* certbot: sync_remote.sh is configurable * certbot: sync_remote.sh is configurable
* evolinux-base: copy GPG key instead of using apt-key * 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+ * ntpd: Add leapfile configuration setting to ntpd on debian 10+
* packweb-apache: install phpMyAdmin from buster-backports * packweb-apache: install phpMyAdmin from buster-backports
* spamassassin: change dependency on evomaintenance * 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: apt_key:
id: "86E50310" id: "86E50310"
keyring: /etc/apt/trusted.gpg keyring: /etc/apt/trusted.gpg
@ -11,10 +11,10 @@
- nodejs - nodejs
- yarn - yarn
- name: NodeJS GPG key is installed - name: Yarn GPG key is installed
copy: copy:
src: yarnpkg.asc src: yarn.asc
dest: /etc/apt/trusted.gpg.d/yarnpkg.asc dest: /etc/apt/trusted.gpg.d/yarn.asc
mode: "0644" mode: "0644"
owner: root owner: root
group: root group: root
@ -24,7 +24,7 @@
- nodejs - nodejs
- yarn - yarn
- name: yarn sources list is available - name: Yarn sources list is available
apt_repository: apt_repository:
repo: "deb https://dl.yarnpkg.com/debian/ stable main" repo: "deb https://dl.yarnpkg.com/debian/ stable main"
filename: yarn filename: yarn
@ -36,7 +36,7 @@
- nodejs - nodejs
- yarn - yarn
- name: yarn is installed - name: Yarn is installed
apt: apt:
name: yarn name: yarn
state: present state: present