Repository signature expired

Discussions about RaZberry - Z-Wave board for Raspberry computer
Eckhard
Posts: 32
Joined: 17 Oct 2015 16:18

Repository signature expired

Post by Eckhard »

Hi all,

the signature for the repository is again invalid:

Code: Select all

pi@razberry2:~ $ sudo apt-get update
Get:1 http://archive.raspberrypi.org/debian buster InRelease [32.6 kB]
Get:2 http://raspbian.raspberrypi.org/raspbian buster InRelease [15.0 kB]
Hit:3 https://repo.z-wave.me/z-way/raspbian buster InRelease
Get:4 http://raspbian.raspberrypi.org/raspbian buster/main armhf Packages [13.0 MB]
Get:5 http://archive.raspberrypi.org/debian buster/main armhf Packages [330 kB]
Err:3 https://repo.z-wave.me/z-way/raspbian buster InRelease
  The following signatures were invalid: EXPKEYSIG E5958C31C0AFD761 Z-Wave.Me <info@z-wave.me>
Fetched 13.4 MB in 7s (1,857 kB/s)
Reading package lists... Done
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://repo.z-wave.me/z-way/raspbian buster InRelease: The following signatures were invalid: EXPKEYSIG E5958C31C0AFD761 Z-Wave.Me <info@z-wave.me>
W: Failed to fetch https://repo.z-wave.me/z-way/raspbian/dists/buster/InRelease  The following signatures were invalid: EXPKEYSIG E5958C31C0AFD761 Z-Wave.Me <info@z-wave.me>
W: Some index files failed to download. They have been ignored, or old ones used instead.
pi@razberry2:~ $ 
mackworth
Posts: 6
Joined: 13 Jul 2020 20:18

Re: Repository signature expired

Post by mackworth »

Thank you for posting this. Doing a new installation, I got this error, and couldn't figure out what I was doing wrong.

So ... we need to wait for someone to update the signatures?
Mekyi
Posts: 1
Joined: 14 Jul 2020 13:20

Re: Repository signature expired

Post by Mekyi »

Has anyone figured out how to solve this? I have exactly the same problem.
ricargr
Posts: 15
Joined: 13 May 2014 22:47

Re: Repository signature expired

Post by ricargr »

Same problem here
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: Repository signature expired

Post by PoltoS »

Please download packages manually from https://repo.z-wave.me and install via dpkg -i

We will fix it within two weeks. Sorry for the inconvenience
mackworth
Posts: 6
Joined: 13 Jul 2020 20:18

Re: Repository signature expired

Post by mackworth »

I"'m sorry; I'm not a Pi expert and need a bit more detail.
I see OS-specific directories, dists vs pool, and then InRelease v release?

Could you tell us which particular packages need to be manually downloaded, and what the commands would be to install?
mackworth
Posts: 6
Joined: 13 Jul 2020 20:18

Re: Repository signature expired

Post by mackworth »

After reading the packaging file here:
https://repo.z-wave.me/z-way/raspbian/d ... f/Packages

I hacked my way through the darkness to the following. As I said, I'm not an expert here, so I can't fix anything, but this worked for me.

Code: Select all

mkdir zwayinstall
cd zwayinstall
sudo apt-get install libarchive13 sharutils libsigsegv2 gawk libc-ares2 libev4 libuv1 libwebsockets8 libssl1.1 libssl1.0.2 libxml2 libc-ares2 libavahi-compat-libdnssd-dev
curl -O -J  https://repo.z-wave.me/z-way/raspbian/pool/main/z/z-way-full/z-way-full_1.0-latest-version_all.deb 
curl -O -J  https://repo.z-wave.me/z-way/raspbian/pool/main/z/z-way-server/z-way-server_3.0.6_armhf.deb 
curl -O -J  https://repo.z-wave.me/z-way/raspbian/pool/main/w/webif/webif_1.2_armhf.deb
curl -O -J  https://repo.z-wave.me/z-way/raspbian/pool/main/z/zbw/zbw_1.2_all.deb
sudo dpkg -R --install ./
if you get error messages, try this one:

Code: Select all

   sudo apt --fix-broken install
when all done, you can remove the package files:

Code: Select all

   rm *.deb
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: Repository signature expired

Post by PoltoS »

Please check, the issue should be solved now. You need to do

Code: Select all

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x7E148E3C
or run the installation script show on the page https://z-wave.me/z-way/download-z-way/
mcestoni
Posts: 1
Joined: 09 Aug 2020 17:31

Re: Repository signature expired

Post by mcestoni »

Perfect
the command

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x7E148E3C

I solve the problem, thank you very much
Raveeshw
Posts: 2
Joined: 21 Aug 2020 11:39

Re: Repository signature expired

Post by Raveeshw »

Post Reply