Skip to content

Commit

Permalink
Fix "apt install" command for Debian (#1843)
Browse files Browse the repository at this point in the history
The etcd package is not available in the bookworm repositories.

Related: #1738

Signed-off-by: simonhammes <[email protected]>
Co-authored-by: simonhammes <[email protected]>
  • Loading branch information
simonhammes and simonhammes authored Sep 9, 2024
1 parent d910e1a commit d55f1a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/en/docs/20.0/get-started/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Vitess supports the databases listed [here](../../overview/supported-databases/)
sudo apt install -y mysql-server etcd-server etcd-client curl

# Debian
sudo apt install -y default-mysql-server default-mysql-client etcd curl
sudo apt install -y default-mysql-server default-mysql-client etcd-server etcd-client curl

# Yum based
sudo yum -y localinstall https://dev.mysql.com/get/mysql80-community-release-el8-3.noarch.rpm
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/21.0/get-started/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Vitess supports the databases listed [here](../../overview/supported-databases/)
sudo apt install -y mysql-server etcd-server etcd-client curl

# Debian
sudo apt install -y default-mysql-server default-mysql-client etcd curl
sudo apt install -y default-mysql-server default-mysql-client etcd-server etcd-client curl

# Yum based
sudo yum -y localinstall https://dev.mysql.com/get/mysql80-community-release-el8-3.noarch.rpm
Expand Down

0 comments on commit d55f1a7

Please sign in to comment.