Separate command lines

I don't think this works if the commands are invoked on the same line with no thing joining them, so separate them on to separate lines.
This commit is contained in:
Toby Murray 2024-10-23 19:59:56 -04:00 committed by June 🍓🦴
parent 8428e7cdf7
commit 6c1c7b35a5
1 changed files with 4 additions and 2 deletions

View File

@ -76,13 +76,15 @@ If you are using a dedicated user for conduwuit, you will need to allow it to
read the config. To do that you can run this:
```bash
sudo chown -R root:root /etc/conduwuit sudo chmod -R 755 /etc/conduwuit
sudo chown -R root:root /etc/conduwuit
sudo chmod -R 755 /etc/conduwuit
```
If you use the default database path you also need to run this:
```bash
sudo mkdir -p /var/lib/conduwuit/ sudo chown -R conduwuit:conduwuit /var/lib/conduwuit/
sudo mkdir -p /var/lib/conduwuit/
sudo chown -R conduwuit:conduwuit /var/lib/conduwuit/
sudo chmod 700 /var/lib/conduwuit/
```