From bcf54a517d77d4afdb8fed3e599f1028dc8c1d80 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Thu, 19 Dec 2019 17:31:33 +0100
Subject: [PATCH] ansible-inventories/arocom#2861 Add support for basic auth on
 certain locations only

---
 action_plugins/uptime.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/action_plugins/uptime.py b/action_plugins/uptime.py
index 2f00fca..4ca1cca 100644
--- a/action_plugins/uptime.py
+++ b/action_plugins/uptime.py
@@ -214,7 +214,7 @@ class ActionModule(ActionBase):
     def _buildUrl(self, item, field, path):
         authPrefix = ''
         auth = item.get('apache_auth')
-        if auth and auth.get('type') == 'Basic':
+        if auth and auth.get('user') and auth.get('type') == 'Basic':
             authPrefix = auth.get('user') + ':' + auth.get('password') + '@'
         url = item.get('protocol', 'https') + '://' + authPrefix + item.get(field)
         uptime = item.get('uptime')
-- 
GitLab