Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/deploy/pages/console/linux/deploy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Fedora/RedHat::
--
[,bash]
----
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.rpm.sh' | \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.rpm.sh' | \
sudo -E bash && sudo yum install redpanda-console -y
----

Expand All @@ -48,7 +48,7 @@ Debian/Ubuntu::
--
[,bash]
----
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.deb.sh' | \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.deb.sh' | \
sudo -E bash && sudo apt-get install redpanda-console -y
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Fedora/RedHat::
[,bash]
----
# Run the setup script to download and install the repo
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.rpm.sh' | sudo -E bash && \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.rpm.sh' | sudo -E bash && \
# Use yum to install redpanda
sudo yum install redpanda -y
----
Expand All @@ -35,7 +35,7 @@ Debian/Ubuntu::
[,bash]
----
# Run the setup script to download and install the repo
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.deb.sh' | sudo -E bash && \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.deb.sh' | sudo -E bash && \
# Use apt to install redpanda
sudo apt install redpanda -y
----
Expand Down
2 changes: 1 addition & 1 deletion modules/deploy/partials/linux/install-fips.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To install Redpanda for FIPS compliance, run:
[,bash]
----
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.rpm.sh' | \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.rpm.sh' | \
sudo -E bash && sudo yum install redpanda -y
----
Expand Down
4 changes: 2 additions & 2 deletions modules/deploy/partials/linux/install-redpanda.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Fedora/RedHat::
--
[,bash]
----
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.rpm.sh' | \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.rpm.sh' | \
sudo -E bash && sudo yum install redpanda -y
----

Expand Down Expand Up @@ -70,7 +70,7 @@ Debian/Ubuntu::
--
[,bash]
----
curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.deb.sh' | \
curl -1sLf 'https://linux.pkg.redpanda.com/setup-redpanda.deb.sh' | \
sudo -E bash && sudo apt install redpanda -y
----

Expand Down
4 changes: 2 additions & 2 deletions modules/get-started/pages/install-beta.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Fedora/RedHat/Amazon Linux::
+
```bash
curl -1sLf \
'https://dl.redpanda.com/E4xN1tVe3Xy60GTx/redpanda-unstable/setup.rpm.sh'
'https://linux.pkg.redpanda.com/setup-redpanda-unstable.rpm.sh'
```
+
. Install Redpanda:
Expand All @@ -131,7 +131,7 @@ Debian/Ubuntu::
+
```bash
curl -1sLf \
'https://dl.redpanda.com/E4xN1tVe3Xy60GTx/redpanda-unstable/setup.deb.sh'
'https://linux.pkg.redpanda.com/setup-redpanda-unstable.deb.sh'
```
+
. Get updated package information for your machine:
Expand Down
Loading