aboutsummaryrefslogtreecommitdiff
path: root/src/property
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-02 13:46:54 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-02 13:46:54 -0700
commit37c8017ed1249b4e34634b7df691b82f62e6361b (patch)
tree7b15e3a01782b43995c0a50a89a9119300c4b033 /src/property
parentcbe56ebc323afa15d5aa2e1f918e01d660c6f322 (diff)
downloadconsfigurator-37c8017ed1249b4e34634b7df691b82f62e6361b.tar.gz
rename SYSTEMD-{-USER -> USER-INSTANCE-ARGS} & stop using &rest
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property')
-rw-r--r--src/property/systemd.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/property/systemd.lisp b/src/property/systemd.lisp
index d805660..6251744 100644
--- a/src/property/systemd.lisp
+++ b/src/property/systemd.lisp
@@ -27,7 +27,7 @@
;;; case, so that more configuration is applicable to unbooted chroots.
(defun systemctl (fn user &rest args &aux (args (cons "systemctl" args)))
- (apply fn (if user (apply #'systemd--user args) args)))
+ (apply fn (if user (systemd-user-instance-args args) args)))
(defprop daemon-reloaded :posix (&optional user)
(:desc "Attempt to reload systemd manager configuration")