aboutsummaryrefslogtreecommitdiff
path: root/src/property/apt.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-07-13 21:58:46 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-07-13 21:58:46 -0700
commit41f5c92d62171535c4d21e6722b0d12ec01e875b (patch)
tree577ab89e905700cac955c4104c120752a7679b3c /src/property/apt.lisp
parent82804c132bc959f1f6e560957942da826fbc17de (diff)
downloadconsfigurator-41f5c92d62171535c4d21e6722b0d12ec01e875b.tar.gz
APT:RECONFIGURED: pass a string not a list as command input
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/apt.lisp')
-rw-r--r--src/property/apt.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/property/apt.lisp b/src/property/apt.lisp
index c05a36d..cd0e938 100644
--- a/src/property/apt.lisp
+++ b/src/property/apt.lisp
@@ -81,7 +81,8 @@ Typically used with the ON-CHANGE combinator."
(:apply
(assert-euid-root)
(run
- :input (loop for triple in triples collect #?"${package} @{triple}")
+ :input (unlines
+ (loop for triple in triples collect #?"${package} @{triple}"))
"debconf-set-selections")
(run :env +noninteractive-env+ "dpkg-reconfigure" "-fnone" package)))