Remove -L flag from curl requests for PGP keys
parent
0ee43bba42
commit
24efb8e55a
|
@ -115,7 +115,7 @@ For added security, follow these steps to verify the signature of your InfluxDB
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -109,7 +109,7 @@ For added security, follow these steps to verify the signature of your InfluxDB
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -117,7 +117,7 @@ For added security, follow these steps to verify the signature of your InfluxDB
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -113,7 +113,7 @@ For added security, follow these steps to verify the signature of your InfluxDB
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -59,7 +59,7 @@ users can install the latest stable version of InfluxDB using the
|
|||
For Ubuntu users, add the InfluxData repository with the following commands:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -67,7 +67,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
For Debian users, add the InfluxData repository:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -60,7 +60,7 @@ users can install the latest stable version of InfluxDB using the
|
|||
For Ubuntu users, add the InfluxData repository with the following commands:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -68,7 +68,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
For Debian users, add the InfluxData repository:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -61,7 +61,7 @@ users can install the latest stable version of InfluxDB using the
|
|||
For Ubuntu users, add the InfluxData repository with the following commands:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -69,7 +69,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
For Debian users, add the InfluxData repository:
|
||||
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -73,7 +73,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -99,7 +99,7 @@ test $VERSION_ID = "9" && echo "deb https://repos.influxdata.com/debian stretch
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -74,7 +74,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -98,7 +98,7 @@ echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -231,7 +231,7 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -76,7 +76,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -100,7 +100,7 @@ echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -233,7 +233,7 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -62,7 +62,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -101,7 +101,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -62,7 +62,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -101,7 +101,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -62,7 +62,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -102,7 +102,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
@ -229,7 +229,7 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -62,7 +62,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -102,7 +102,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
@ -226,7 +226,7 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -61,7 +61,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -101,7 +101,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
@ -224,7 +224,7 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
|
|||
1. Download and import InfluxData's public key:
|
||||
|
||||
```
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
curl -s https://repos.influxdata.com/influxdb.key | gpg --import
|
||||
```
|
||||
|
||||
2. Download the signature file for the release by adding `.asc` to the download URL.
|
||||
|
|
|
@ -64,7 +64,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -104,7 +104,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -64,7 +64,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -104,7 +104,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
|
@ -62,7 +62,7 @@ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stabl
|
|||
|
||||
{{% code-tab-content %}}
|
||||
```bash
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/lsb-release
|
||||
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
```
|
||||
|
@ -101,7 +101,7 @@ sudo apt-get update && sudo apt-get install apt-transport-https
|
|||
|
||||
# Add the InfluxData key
|
||||
|
||||
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
|
||||
source /etc/os-release
|
||||
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
|
||||
|
|
Loading…
Reference in New Issue