Explorar el Código

Add GPG De-Armor From Jitsi

Jitsi meet provided the one liner to accept an armored GPG key and
create the gpg file from it.
master
Nate Bohman hace 4 años
padre
commit
a21c1ad5e4
Firmado por: Nate Bohman <natrinicle@gmail.com> ID de clave GPG: C10546A54ABA1CE5
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. +8
    -0
      gpg-dearmor.sh

+ 8
- 0
gpg-dearmor.sh Ver fichero

@@ -0,0 +1,8 @@
#!/usr/bin/env bash

# De-ASCII Armor GPG key
# https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-quickstart
# e.g.
# curl https://download.jitsi.org/jitsi-key.gpg.key | sudo sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg'

cat $1 | gpg --dearmor

Cargando…
Cancelar
Guardar