aboutsummaryrefslogtreecommitdiff
path: root/src/deployment.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-21 17:17:52 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-21 17:22:25 -0700
commitd6e52cbd4a178bdae7961c6f199a99724bb9d04e (patch)
tree596dec2f6896cf20cbe66e9088ec83179c201a7d /src/deployment.lisp
parentc4457789daacc3cb49bc266325e3406d9861c815 (diff)
downloadconsfigurator-d6e52cbd4a178bdae7961c6f199a99724bb9d04e.tar.gz
CONTINUE-DEPLOY*: pass :LOCAL as default remaining connection
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/deployment.lisp')
-rw-r--r--src/deployment.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deployment.lisp b/src/deployment.lisp
index f8a8b17..221b89b 100644
--- a/src/deployment.lisp
+++ b/src/deployment.lisp
@@ -81,7 +81,7 @@ DEFHOST forms can override earlier entries (see DEFHOST's docstring)."
Used by implementations of ESTABLISH-CONNECTION which need to do something
like fork(2) and then return to Consfigurator's primary loop in the child."
- (%consfigure remaining-connections *host*))
+ (%consfigure (or remaining-connections '((:local))) *host*))
;; in the following two macros, bind *HOST* so that evaluation of the
;; unevaluated propspec can retrieve existing hostattrs; shallow copy just in