-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Labels
Description
Steps to reproduce:
Minimal actions needed to reproduce the behaviour.
- Run step 2 for Ubuntu/Debian from the installation instruction
- Observe checksum validation failure
Expected behaviour:
Checksum to match, key to be written to disk
Actual behaviour:
Checksum failed, key was not written to disk
Environment info:
- System info: Debian 12 (x86_64)
Config:
n/a
Logs:
Here's the command and output of the command from the documentation.
curl --silent --location -O \
https://repos.influxdata.com/influxdata-archive.key
echo "943666881a1b8d9b849b74caebf02d3465d6beb716510d86a39f6c8e8dac7515 influxdata-archive.key" \
| sha256sum --check - && cat influxdata-archive.key \
| gpg --dearmor \
| sudo tee /etc/apt/trusted.gpg.d/influxdata-archive.gpg > /dev/null \
&& echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
| sudo tee /etc/apt/sources.list.d/influxdata.list
influxdata-archive.key: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
curl --silent --location -O \
https://repos.influxdata.com/influxdata-archive.key | sha256sum
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -
hax0rbana-adam