aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-12-26 18:42:10 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-12-27 10:49:11 -0700
commitc0aec4adcd899ff52fc2737eb90e3c4438d322cd (patch)
tree84394d7c8f018be5381c04335e6c146edb0b2d84 /src
parent7053cad118529d9e02afb8887504709318f6faa3 (diff)
downloadconsfigurator-c0aec4adcd899ff52fc2737eb90e3c4438d322cd.tar.gz
in examples, use fewer of my personal hostnames & domains
Additionally, in conventions.rst, fix an example of the :SUDO connection type to use the correct hostname for looking up the password. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src')
-rw-r--r--src/deployment.lisp4
-rw-r--r--src/property/disk.lisp6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/deployment.lisp b/src/deployment.lisp
index 0691564..3a3d404 100644
--- a/src/deployment.lisp
+++ b/src/deployment.lisp
@@ -362,9 +362,9 @@ REPL with DEPLOY-THESE/HOSTDEPLOY-THESE -- do not add to hosts.
For example, to sudo to root to test your new function which needs root
privileges to do anything at all,
- (deploy-these :sudo melete.silentflame.com (evals '(my-new-function)))
+ (deploy-these :sudo laptop.example.com (evals '(my-new-function)))
-where melete.silentflame.com is your laptop.
+where laptop.example.com is your laptop.
Note that while this property is declared to be :POSIX for flexibility,
whether it is actually :POSIX depends on what input and output FORMS perform."
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index 04393ce..9466b5d 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -1120,10 +1120,10 @@ Example usage:
(partition
(luks-container
(lvm-physical-volume
- :volume-group \"vg_melete\"))))))
+ :volume-group \"vg_laptop\"))))))
(lvm-logical-volume
- :volume-group \"vg_melete\"
- :volume-label \"lv_melete_root\"
+ :volume-group \"vg_laptop\"
+ :volume-label \"lv_laptop_root\"
(ext4-filesystem :mount-point #P\"/\")))"
(labels
((parse (spec)