From d97c2a7f6ff088ba953346971bc9914f01c9d925 Mon Sep 17 00:00:00 2001 From: "James G. Beldock" Date: Mon, 25 Dec 2023 19:28:33 -0800 Subject: [PATCH] Fix typos in /opt/.../netbox/ paths The number of nested /netbox directories is actually 3 not 2 if you follow these directions. Updated the three locations I could find where there were only 2 shown. --- docs/installation/3-netbox.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/installation/3-netbox.md b/docs/installation/3-netbox.md index 0713d12e3..4946cefd8 100644 --- a/docs/installation/3-netbox.md +++ b/docs/installation/3-netbox.md @@ -99,9 +99,9 @@ Create a system user account named `netbox`. We'll configure the WSGI and HTTP s ``` sudo adduser --system --group netbox - sudo chown --recursive netbox /opt/netbox/netbox/media/ - sudo chown --recursive netbox /opt/netbox/netbox/reports/ - sudo chown --recursive netbox /opt/netbox/netbox/scripts/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/media/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/reports/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/scripts/ ``` === "CentOS" @@ -109,9 +109,9 @@ Create a system user account named `netbox`. We'll configure the WSGI and HTTP s ``` sudo groupadd --system netbox sudo adduser --system -g netbox netbox - sudo chown --recursive netbox /opt/netbox/netbox/media/ - sudo chown --recursive netbox /opt/netbox/netbox/reports/ - sudo chown --recursive netbox /opt/netbox/netbox/scripts/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/media/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/reports/ + sudo chown --recursive netbox /opt/netbox/netbox/netbox/scripts/ ``` ## Configuration @@ -119,7 +119,7 @@ Create a system user account named `netbox`. We'll configure the WSGI and HTTP s Move into the NetBox configuration directory and make a copy of `configuration_example.py` named `configuration.py`. This file will hold all of your local configuration parameters. ```no-highlight -cd /opt/netbox/netbox/netbox/ +cd /opt/netbox/netbox/netbox/netbox/ sudo cp configuration_example.py configuration.py ```