From a4ad2eb27fdca125693fe356a43e8005d62a34f0 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 11 Jun 2018 10:16:26 +0200 Subject: [PATCH] validate: be more explicit with error msg when notario isn't installed This error message may be confusing and need to be more explicit on where you have to install notario, indeed, people may think this library must be installed on configured nodes while it must be installed on the node you are running the playbook. Fixes: #2649 Signed-off-by: Guillaume Abrioux --- plugins/actions/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/actions/validate.py b/plugins/actions/validate.py index 60716a0d5..cdccfb9a0 100644 --- a/plugins/actions/validate.py +++ b/plugins/actions/validate.py @@ -10,7 +10,7 @@ except ImportError: try: import notario except ImportError: - msg = "The python-notario library is missing. Please install it to continue." + msg = "The python-notario library is missing. Please install it on the node you are running ceph-ansible to continue." display.error(msg) raise SystemExit(msg)