From c440e038d05240e904eb35f55b3f1bb00f79e68f Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Oct 16 2018 09:03:05 +0000 Subject: Fix the message with no command to be technically correct Signed-off-by: Patrick Uiterwijk --- diff --git a/files/aclchecker.py b/files/aclchecker.py index 48938eb..203da6d 100644 --- a/files/aclchecker.py +++ b/files/aclchecker.py @@ -18,7 +18,7 @@ import os import requests if "SSH_ORIGINAL_COMMAND" not in os.environ: - print("Welcome %s. This server does not offer ssh access." % sys.argv[1]) + print("Welcome %s. This server does not offer shell access." % sys.argv[1]) sys.exit(0) # Since this is run by sshd, we don't have a way to set environment