You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update installation on debian
the $CODENAME doesn't work properly
Signed-off-by: Mohammed Abdallah <[email protected]>
* Update installation on debian
- Redirect stderr messages, to not get extra lines of output like No LSB modules are available.
- Separate the codename variable to be more efficient and readable
Signed-off-by: Mohammed Abdallah <[email protected]>
---------
Signed-off-by: Mohammed Abdallah <[email protected]>
Copy file name to clipboardExpand all lines: installation/linux/debian.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,13 +52,16 @@ Refer to the [supported platform documentation](../supported-platforms.md) to se
52
52
## Update your sources lists
53
53
54
54
For Debian, you must add the Fluent Bit APT server entry to your sources lists.
55
+
Ensure codename is set to your specific [Debian release name](https://wiki.debian.org/DebianReleases#Production\_Releases). (for example: `bookworm` for Debian 12)
echo"deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/ubuntu/${CODENAME}${CODENAME} main"| sudo tee /etc/apt/sources.list.d/fluent-bit.list
62
+
echo"deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/ubuntu/$codename$codename main"| sudo tee /etc/apt/sources.list.d/fluent-bit.list
58
63
```
59
64
60
-
Replace _`CODENAME`_ with your specific [Debian release name](https://wiki.debian.org/DebianReleases#Production\_Releases) (for example: `bookworm` for Debian 12)
0 commit comments