aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-01 15:15:42 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-01 15:56:45 -0700
commit61a5fea1600969f404d9fcf0ba6a3fc0fdc4b5f7 (patch)
tree0976e70e43af411ad3f258bfd934fb33ccac0949
parentf1886a815ae4d9a13d44ca50561157bcc688ce06 (diff)
downloadconsfigurator-61a5fea1600969f404d9fcf0ba6a3fc0fdc4b5f7.tar.gz
add descriptions to DEPLOYS, DEPLOYS-THESE, RECONNECTS
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/deployment.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/deployment.lisp b/src/deployment.lisp
index fcb6f9d..1937270 100644
--- a/src/deployment.lisp
+++ b/src/deployment.lisp
@@ -167,6 +167,8 @@ ADDITIONAL-PROPERTIES also applied to HOST, like DEPLOY.
Useful to have one host act a controller, applying properties to other hosts.
Also useful to set up VMs, chroots, disk images etc. on localhost."
+ (:desc (declare (ignore connections host additional-properties))
+ "Subdeployment")
(:preprocess
(list (preprocess-connections connections)
(preprocess-host
@@ -184,6 +186,7 @@ Also useful to set up VMs, chroots, disk images etc. on localhost."
"Like DEPLOYS, except apply to HOST each of the properties specified by
PROPERTIES, and not the host's usual properties, unless they also appear in
PROPERTIES, like DEPLOY-THESE."
+ (:desc (declare (ignore connections host properties)) "Subdeployment")
(:preprocess
(list (preprocess-connections connections)
(preprocess-host (replace-propspec-into-host host properties))))
@@ -198,6 +201,7 @@ PROPERTIES, like DEPLOY-THESE."
"Connect back to the same host with CONNECTIONS and apply PROPERTIES.
Mainly useful for using a connection type like :AS to apply properties as a
different user."
+ (:desc (declare (ignore connections properties)) "Reconnection")
(:preprocess
(list (preprocess-connections connections)
(list :host nil :propspec properties)))