aboutsummaryrefslogtreecommitdiff
path: root/src/deployment.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-01 23:34:55 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-01 23:34:55 -0700
commitf08df5cc392f16e5a702fbac4be0504842f30f00 (patch)
tree1bfb8a50981880741303e7674bdccd96cf09ee44 /src/deployment.lisp
parent50df6724e62a1bd3978bddf546d5e4408b6bd564 (diff)
downloadconsfigurator-f08df5cc392f16e5a702fbac4be0504842f30f00.tar.gz
DEPLOY: don't accept string for host
That feature makes sense only for DEPLOY-THESE. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/deployment.lisp')
-rw-r--r--src/deployment.lisp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/deployment.lisp b/src/deployment.lisp
index 472ba4b..5679d59 100644
--- a/src/deployment.lisp
+++ b/src/deployment.lisp
@@ -111,9 +111,7 @@ The evaluation of ADDITIONAL-PROPERTIES to produce a property application
specification may retrieve existing hostattrs, but should not set any new
ones (not to be confused with how the :HOSTATTRS subroutines of properties in
ADDITIONAL-PROPERTIES may set additional hostattrs)."
- (once-only ((host (if (stringp host)
- `(make-host :hostattrs (list :hostname (list ,host)))
- host)))
+ (once-only (host)
`(deploy* ',connections
,host
(let ((*host* (shallow-copy-host ,host)))