Skip to content

Commit 0ea5e61

Browse files
authored
Merge pull request CactuseSecurity#2858 from SolidProgramming/Update-basic-installation.md-instructions
Update basic installation.md instructions
2 parents dccae36 + e081950 commit 0ea5e61

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

documentation/installer/basic-installation.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@
1010
su -
1111
apt-get install git sudo ansible
1212
```
13-
if not already configured, add your current user to sudo group (make sure to activate this change by starting new shell or even rebooting):
13+
if not already configured, add your current user to sudo group (**_make sure to activate this change by rebooting_**):
1414

1515
```console
16-
usermod -a -G sudo `whoami`
16+
usermod -a -G sudo <user>
17+
```
18+
19+
To check if the user is in the sudoers file, you can check with following command:
20+
```console
21+
grep sudo /etc/group
22+
```
23+
24+
**_Exit to normal user with:_**
25+
```console
26+
exit
1727
```
1828

1929
Also make sure your packages are up to date before FWORCH installation using e.g.
@@ -24,7 +34,7 @@ possibly followed by a reboot.
2434

2535
2) Getting Firewall Orchestrator
2636

27-
with the following command (as normal user)
37+
with the following command:
2838

2939
```console
3040
git clone https://github.com/CactuseSecurity/firewall-orchestrator.git
@@ -71,4 +81,4 @@ The api hasura admin secret can be used to access the API at <https://localhost:
7181

7282
If using the python venv method, you may now exit venv with:
7383

74-
deactivate
84+
deactivate

0 commit comments

Comments
 (0)