aboutsummaryrefslogtreecommitdiff
path: root/src/connection
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection')
-rw-r--r--src/connection/linux-namespace.lisp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/connection/linux-namespace.lisp b/src/connection/linux-namespace.lisp
index e4a72ef..7693330 100644
--- a/src/connection/linux-namespace.lisp
+++ b/src/connection/linux-namespace.lisp
@@ -129,8 +129,9 @@
"--" "sh" "-c" ,cmd)))
(if (and owner (not (string= owner (get-connattr :remote-user))))
(with-connattrs (:remote-uid owner-uid)
- (list* "runuser" "-u" owner "--" (apply #'systemd--user args)))
- (apply #'systemd--user args)))))
+ (list* "runuser" "-u" owner "--"
+ (systemd-user-instance-args args)))
+ (systemd-user-instance-args args)))))
(defmethod establish-connection
((type (eql :lxc-unpriv-attach)) remaining &key owner name pid uid gid)