Skip to content

Commit e6ce8cf

Browse files
authored
(DOCSP-25907) Update Debian apt install with Debian 11 and remove Debian 9 (#785)
* (DOCSP-25907) Update Debian apt install with Debian 11 and remove Debian 9 * (DOCSP-25907) Update Debian apt install with Debian 11 and remove Debian 9 * Adjusted paths
1 parent f72efff commit e6ce8cf

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

source/includes/steps-install-mcli-apt.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -38,40 +38,40 @@ content: |
3838
3939
.. code-block:: sh
4040
41-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
41+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
4242
4343
.. tab:: Ubuntu 20.04 (Focal)
4444
:tabid: comm-focal
4545
4646
.. code-block:: sh
4747
48-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
48+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
4949
5050
.. tab:: Ubuntu 18.04 (Bionic)
5151
:tabid: comm-bionic
5252
5353
.. code-block:: sh
5454
55-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
55+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu/dists/bionic/mongodb-org/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
5656
5757
.. tab:: Debian
5858
:tabid: debian
5959
6060
.. tabs::
6161
62-
.. tab:: Debian 10 (Buster)
63-
:tabid: comm-deb-10
62+
.. tab:: Debian 11 (Bullseye)
63+
:tabid: comm-deb-11
6464
6565
.. code-block:: sh
6666
67-
echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
67+
echo "deb http://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
6868
69-
.. tab:: Debian 9 (Stretch)
70-
:tabid: comm-deb-9
69+
.. tab:: Debian 10 (Buster)
70+
:tabid: comm-deb-10
7171
7272
.. code-block:: sh
7373
74-
echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
74+
echo "deb http://repo.mongodb.org/apt/debian/dists/buster/mongodb-org/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-org-{+mdbVersion+}.list
7575
7676
.. tab:: MongoDB Enterprise Edition
7777
:tabid: mdb-comm
@@ -91,40 +91,40 @@ content: |
9191
9292
.. code-block:: sh
9393
94-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu jammy/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
94+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu/dists/jammy/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
9595
9696
.. tab:: Ubuntu 20.04 (Focal)
9797
:tabid: ent-focal
9898
9999
.. code-block:: sh
100100
101-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu focal/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
101+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu/dists/focal/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
102102
103103
.. tab:: Ubuntu 18.04 (Bionic)
104104
:tabid: ent-bionic
105105
106106
.. code-block:: sh
107107
108-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu bionic/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
108+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.com/apt/ubuntu/dists/bionic/mongodb-enterprise/{+mdbVersion+} multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
109109
110110
.. tab:: Debian
111111
:tabid: debian
112112
113113
.. tabs::
114114
115-
.. tab:: Debian 10 (Buster)
116-
:tabid: ent-deb-10
115+
.. tab:: Debian 11 (bullseye)
116+
:tabid: ent-deb-11
117117
118118
.. code-block:: sh
119119
120-
echo "deb http://repo.mongodb.com/apt/debian buster/mongodb-enterprise/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
120+
echo "deb http://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
121121
122-
.. tab:: Debian 9 (Stretch)
123-
:tabid: ent-deb-9
122+
.. tab:: Debian 10 (buster)
123+
:tabid: ent-deb-10
124124
125125
.. code-block:: sh
126126
127-
echo "deb http://repo.mongodb.com/apt/debian stretch/mongodb-enterprise/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
127+
echo "deb http://repo.mongodb.com/apt/debian/dists/buster/mongodb-enterprise/{+mdbVersion+} main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
128128
129129
---
130130
stepnum: 3

0 commit comments

Comments
 (0)