mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-15 09:13:01 +02:00
add warning about os security enhancements
This commit is contained in:
parent
ffd278e7d9
commit
7fe2dc34e5
1 changed files with 1 additions and 1 deletions
2
algo
2
algo
|
@ -39,7 +39,7 @@ ssh_tunneling_enabled=${ssh_tunneling_enabled:-n}
|
||||||
if [[ "$ssh_tunneling_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" ssh_tunneling"; fi
|
if [[ "$ssh_tunneling_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" ssh_tunneling"; fi
|
||||||
|
|
||||||
read -p "
|
read -p "
|
||||||
Do you want to apply operating system security enhancements on the server?
|
Do you want to apply operating system security enhancements on the server? (warning: replaces your sshd_config)
|
||||||
[y/N]: " -r security_enabled
|
[y/N]: " -r security_enabled
|
||||||
security_enabled=${security_enabled:-n}
|
security_enabled=${security_enabled:-n}
|
||||||
if [[ "$security_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" security"; fi
|
if [[ "$security_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" security"; fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue