summaryrefslogtreecommitdiff
path: root/gnu/machine
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-05-05 12:35:27 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-05-05 23:48:45 +0900
commit3b05b9d7ac01d7b8f9d5629f27ea742cb825c99c (patch)
tree47600425acdc45875e90de95d76e5e7115992dce /gnu/machine
parent3e1befe1d8e3e1fae38abd8b5f89db2cd764372b (diff)
machine: hetzner: Fix default value for hetzner-configuration-delete?
#f is to keep the failed provisioned server intact for debugging. The documented default is #t, so adjust the code accordingly. * gnu/machine/hetzner.scm (<hetzner-configuration>) [delete?]: Change default to #t to match documentation. Change-Id: Iabee105cbf5f5e31e8a8f5cb5db99439a168f174
Diffstat (limited to 'gnu/machine')
-rw-r--r--gnu/machine/hetzner.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/machine/hetzner.scm b/gnu/machine/hetzner.scm
index cf035c30cc8..2bce0c4a1f0 100644
--- a/gnu/machine/hetzner.scm
+++ b/gnu/machine/hetzner.scm
@@ -202,7 +202,7 @@ Have you run 'guix archive --generate-key'?")
202 (build-locally? hetzner-configuration-build-locally? ; boolean 202 (build-locally? hetzner-configuration-build-locally? ; boolean
203 (default #t)) 203 (default #t))
204 (delete? hetzner-configuration-delete? ; boolean 204 (delete? hetzner-configuration-delete? ; boolean
205 (default #f)) 205 (default #t))
206 (labels hetzner-configuration-labels ; list of strings 206 (labels hetzner-configuration-labels ; list of strings
207 (default '())) 207 (default '()))
208 (location hetzner-configuration-location ; #f | string 208 (location hetzner-configuration-location ; #f | string