Skip to content

Commit a3e015c

Browse files
committed
sync with Gerrit
1 parent c901c59 commit a3e015c

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def get_version():
9999
#
100100
# This is also used if you do content translation via gettext catalogs.
101101
# Usually you set "language" from the command line for these cases.
102-
language = None
102+
language = 'en'
103103

104104
# List of patterns, relative to source directory, that match files and
105105
# directories to ignore when looking for source files.

onramp/gnb.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ follow:
252252
:align: center
253253

254254
Management dashboard on the Sercomm gNB, showing the dropdown
255-
``Settings`` menu overlayed on the ``NR Cell Configuration`` page
255+
``Settings`` menu overlaid on the ``NR Cell Configuration`` page
256256
(which shows default radio settings).
257257

258258

onramp/start.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -60,28 +60,28 @@ follows:
6060

6161
.. code-block::
6262
63-
$ sudo apt install pipx
64-
$ sudo apt install python3.8-venv
63+
$ sudo apt install sshpass python3-venv pipx
6564
$ pipx install --include-deps ansible
6665
$ pipx ensurepath
67-
$ sudo apt-get install sshpass
6866
6967
Once installed, displaying the Ansible version number should result in
70-
output similar to the following:
68+
output similar to the following on Ubuntu 20.04. (Ubuntu 22.04 will
69+
show ``ansible [core 2.16.2]``.)
7170

7271
.. code-block::
7372
7473
$ ansible --version
75-
ansible [core 2.11.12]
74+
ansible [core 2.13.13]
7675
config file = None
77-
configured module search path = ['/home/foo/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
78-
ansible python module location = /home/foo/.local/lib/python3.6/site-packages/ansible
79-
ansible collection location = /home/foo/.ansible/collections:/usr/share/ansible/collections
80-
executable location = /home/foo/.local/bin/ansible
81-
python version = 3.6.9 (default, Mar 10 2023, 16:46:00) [GCC 8.4.0]
82-
jinja version = 3.0.3
76+
configured module search path = ['/home/ubuntu/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
77+
ansible python module location = /home/ubuntu/.local/pipx/venvs/ansible/lib/python3.8/site-packages/ansible
78+
ansible collection location = /home/ubuntu/.ansible/collections:/usr/share/ansible/collections
79+
executable location = /home/ubuntu/.local/bin/ansible
80+
python version = 3.8.10 (default, Nov 22 2023, 10:22:35) [GCC 9.4.0]
81+
jinja version = 3.1.3
8382
libyaml = True
8483
84+
8585
Note that a fresh install of Ubuntu may be missing other packages that
8686
you need (e.g., ``git``, ``curl``, ``make``), but you will be prompted
8787
to install them as you step through the Quick Start sequence.

requirements.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
22
# SPDX-License-Identifier: Apache-2.0
33

4-
Sphinx~=4.4.0
5-
doc8~=0.10.1
6-
docutils~=0.17.1
7-
reuse~=0.14.0
8-
sphinx-rtd-theme~=1.0.0
9-
sphinxcontrib-spelling~=7.3.2
4+
Sphinx~=5.3.0
5+
doc8~=1.1.1
6+
docutils~=0.19
7+
reuse~=2.1.0
8+
sphinx-rtd-theme~=2.0.0
9+
sphinxcontrib-spelling~=8.0.0
1010
sphinx-multiversion~=0.2.4

0 commit comments

Comments
 (0)