From 2d09347034742ca9e3eaf4cdbca993fbe22c7c35 Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Mon, 18 Dec 2023 10:57:20 +0200 Subject: [PATCH] Relocate sudo requirement in prerequisites and reword --- docs/prerequisites.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/prerequisites.md b/docs/prerequisites.md index 4881b7d83..d68704397 100644 --- a/docs/prerequisites.md +++ b/docs/prerequisites.md @@ -18,6 +18,8 @@ If your distro runs within an [LXC container](https://linuxcontainers.org/), you - [Python](https://www.python.org/) being installed on the server. Most distributions install Python by default, but some don't (e.g. Ubuntu 18.04) and require manual installation (something like `apt-get install python3`). On some distros, Ansible may incorrectly [detect the Python version](https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html) (2 vs 3) and you may need to explicitly specify the interpreter path in `inventory/hosts` during installation (e.g. `ansible_python_interpreter=/usr/bin/python3`) +- [sudo](https://www.sudo.ws/) being installed on the server, even when you've configured Ansible to log in as `root`. Some distributions, like a minimal Debian net install, do not include the `sudo` package by default. + - The [Ansible](http://ansible.com/) program being installed on your own computer. It's used to run this playbook and configures your server for you. Take a look at [our guide about Ansible](ansible.md) for more information, as well as [version requirements](ansible.md#supported-ansible-versions) and alternative ways to run Ansible. - the [passlib](https://passlib.readthedocs.io/en/stable/index.html) Python library installed on the computer you run Ansible. On most distros, you need to install some `python-passlib` or `py3-passlib` package, etc. @@ -42,6 +44,4 @@ If your distro runs within an [LXC container](https://linuxcontainers.org/), you - the range `49152-49172/udp`: TURN over UDP - potentially some other ports, depending on the additional (non-default) services that you enable in the **configuring the playbook** step (later on). Consult each service's documentation page in `docs/` for that. -- `sudo`, make sure it is installed. Some distributions, like a minimal Debian net install, do not include it by default. - When ready to proceed, continue with [Configuring DNS](configuring-dns.md).