From ff2fd7766c568eb088eefd58bf1f0cb8a55d7781 2024-09-21 13:26:08 From: Branko Majic Date: 2024-09-21 13:26:08 Subject: [PATCH] MAR-218: Use offline mode when running ansible-lint: - Avoids calling out to remote servers (and leaking info about caller). --- diff --git a/.ansible-lint b/.ansible-lint index ef62fcb937d326d90f17db8efa893af1dc38bfa5..ea56f68822322f3903f710587e1c288fdbc7630a 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -3,3 +3,6 @@ skip_list: # Disable check that insists on prefixing every single role variable with role name. - var-naming[no-role-prefix] + +# Disable calling out to remote systems during testing. +offline: true \ No newline at end of file