From 7fe2dc34e574b8ef7f4e47a51f381bc6ff3d7506 Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Mon, 20 Feb 2017 03:28:32 +0100 Subject: [PATCH] add warning about os security enhancements --- algo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algo b/algo index d001a6e5..18e426bf 100755 --- a/algo +++ b/algo @@ -39,7 +39,7 @@ ssh_tunneling_enabled=${ssh_tunneling_enabled:-n} if [[ "$ssh_tunneling_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" ssh_tunneling"; fi 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 security_enabled=${security_enabled:-n} if [[ "$security_enabled" =~ ^(y|Y)$ ]]; then ROLES+=" security"; fi