]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
machinectl: spawn ask password agent on "start" 14037/head
authorLennart Poettering <lennart@poettering.net>
Fri, 15 Nov 2019 10:12:34 +0000 (11:12 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 15 Nov 2019 10:12:34 +0000 (11:12 +0100)
We start units in the background, hence it is wise to also have the
ask pasword agent around.

Fixes: #13587
src/machine/machinectl.c

index 6dbdba12fd4d67f988a24d1bf607b6df31427983..afb89853be496a21b84ef0a690fbb0b64834c442 100644 (file)
@@ -46,6 +46,7 @@
 #include "sigbus.h"
 #include "signal-util.h"
 #include "sort-util.h"
+#include "spawn-ask-password-agent.h"
 #include "spawn-polkit-agent.h"
 #include "stdio-util.h"
 #include "string-table.h"
@@ -1722,6 +1723,7 @@ static int start_machine(int argc, char *argv[], void *userdata) {
         assert(bus);
 
         polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
+        ask_password_agent_open_if_enabled(arg_transport, arg_ask_password);
 
         r = bus_wait_for_jobs_new(bus, &w);
         if (r < 0)