From 28fb13bdff2332a2daa146f5c357b670637f3383 Mon Sep 17 00:00:00 2001 From: Peter Siegel Date: Fri, 31 Jan 2025 15:05:17 +0100 Subject: [PATCH] unset default user --- plugins/connection/lxd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/connection/lxd.py b/plugins/connection/lxd.py index ae699bc76f..31ed990981 100644 --- a/plugins/connection/lxd.py +++ b/plugins/connection/lxd.py @@ -63,7 +63,7 @@ class Connection(ConnectionBase): transport = 'community.general.lxd' has_pipelining = True - default_user = 'root' + default_user = None def __init__(self, play_context, new_stdin, *args, **kwargs): super(Connection, self).__init__(play_context, new_stdin, *args, **kwargs)