aboutsummaryrefslogtreecommitdiff
path: root/src/property
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-01 18:09:50 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-01 18:09:50 -0700
commited8c76f566de8f6c10cdace515b3d076026258f0 (patch)
treefaf5beb60bd63094a77d45b9bd807075bf2dfc91 /src/property
parent3d66b5420d42c47ba0c9b33e97d5ced79ce6dd3e (diff)
downloadconsfigurator-ed8c76f566de8f6c10cdace515b3d076026258f0.tar.gz
replace some Scheme-style names
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property')
-rw-r--r--src/property/apt.lisp2
-rw-r--r--src/property/chroot.lisp2
-rw-r--r--src/property/cron.lisp4
-rw-r--r--src/property/crypttab.lisp4
-rw-r--r--src/property/fstab.lisp6
-rw-r--r--src/property/network.lisp4
-rw-r--r--src/property/periodic.lisp2
7 files changed, 12 insertions, 12 deletions
diff --git a/src/property/apt.lisp b/src/property/apt.lisp
index 41ec98d..d1bf892 100644
--- a/src/property/apt.lisp
+++ b/src/property/apt.lisp
@@ -367,7 +367,7 @@ in testing, you could use:
collect (list
'file:exists-with-content
(strcat "/etc/apt/preferences.d/10consfig_"
- (string->filename preference)
+ (string-to-filename preference)
".pref")
(nbutlast
(loop for (os pin) on pairs by #'cddr
diff --git a/src/property/chroot.lisp b/src/property/chroot.lisp
index 805f676..e894a9f 100644
--- a/src/property/chroot.lisp
+++ b/src/property/chroot.lisp
@@ -34,7 +34,7 @@
&allow-other-keys
&aux (os (get-hostattrs-car :os host))
(args (list "debootstrap"
- (plist->long-options
+ (plist-to-long-options
(remove-from-plist options :apt.proxy :apt.mirror))
(strcat "--arch=" (os:debian-architecture os))
(os:debian-suite os)
diff --git a/src/property/cron.lisp b/src/property/cron.lisp
index 959f190..f5dc67e 100644
--- a/src/property/cron.lisp
+++ b/src/property/cron.lisp
@@ -38,8 +38,8 @@ The output of the cronjob will be mailed only if the job exits nonzero."
(strcat "/etc/cron." (if (keywordp when)
(string-downcase (symbol-name when))
"d"))))
- (job (merge-pathnames (string->filename desc) dir))
- (script (merge-pathnames (strcat (string->filename desc) "_cronjob")
+ (job (merge-pathnames (string-to-filename desc) dir))
+ (script (merge-pathnames (strcat (string-to-filename desc) "_cronjob")
#P"/usr/local/bin/"))
(script* (sh-escape script)))
`(with-unapply
diff --git a/src/property/crypttab.lisp b/src/property/crypttab.lisp
index 744361b..4229cbf 100644
--- a/src/property/crypttab.lisp
+++ b/src/property/crypttab.lisp
@@ -54,7 +54,7 @@
(defmethod ct-options ((volume opened-luks-container))
(or (crypttab-options volume) '("none")))
-(defmethod volume->entry ((volume opened-luks-container))
+(defmethod volume-to-entry ((volume opened-luks-container))
(format nil "~A ~A ~A ~{~A~^,~}"
(ct-target volume) (ct-source volume)
(ct-keyfile volume) (ct-options volume)))
@@ -82,6 +82,6 @@ This is used when building disk images and installing operating systems."
(:hostattrs (os:required 'os:linux))
(:apply
(apply #'has-entries
- (mapcar #'volume->entry
+ (mapcar #'volume-to-entry
(mapcan (curry #'subvolumes-of-type 'opened-luks-container)
(get-connattr :opened-volumes))))))
diff --git a/src/property/fstab.lisp b/src/property/fstab.lisp
index f684316..34f1d04 100644
--- a/src/property/fstab.lisp
+++ b/src/property/fstab.lisp
@@ -67,7 +67,7 @@ Other properties might fill it in."
(if (eql #P"/" (mount-point volume))
1 2))
-(defmethod volume->entry ((volume filesystem) parent)
+(defmethod volume-to-entry ((volume filesystem) parent)
(format nil "~A ~A ~A ~{~A~^,~} ~A ~A"
(fs-spec volume parent) (fs-file volume)
(fs-vfstype volume) (fs-mntops volume)
@@ -95,7 +95,7 @@ specified with DISK:HAS-VOLUMES."
(:desc (format nil "fstab entries for ~:[~;host's ~]volumes" volumes))
(:hostattrs (os:required 'os:linux))
(:apply (apply #'has-entries
- (apply #'mapcar #'volume->entry
+ (apply #'mapcar #'volume-to-entry
(multiple-value-list
(multiple-value-mapcan
(curry #'subvolumes-of-type 'filesystem)
@@ -109,7 +109,7 @@ This is used when building disk images and installing operating systems."
(:hostattrs (os:required 'os:linux))
(:apply
(apply #'has-entries
- (apply #'mapcar #'volume->entry
+ (apply #'mapcar #'volume-to-entry
(multiple-value-list
(multiple-value-mapcan
(curry #'subvolumes-of-type 'mounted-filesystem)
diff --git a/src/property/network.lisp b/src/property/network.lisp
index 4ac849a..c802c90 100644
--- a/src/property/network.lisp
+++ b/src/property/network.lisp
@@ -75,7 +75,7 @@ OPTIONS is a list of even length of alternating keys and values."
(setq options (list* "netmask" netmask options)))
(setq options (list* "address" address options))
(file:has-content
- (merge-pathnames (string->filename interface)
+ (merge-pathnames (string-to-filename interface)
#P"/etc/network/interfaces.d/")
(list* (strcat "auto " interface)
(format nil "iface ~A ~A static"
@@ -103,7 +103,7 @@ the networking stack's current state like this one does."
return (words line)))
(interface (or interface (fifth default)))
(gateway (and (string= (fifth default) interface) (third default)))
- (file (merge-pathnames (string->filename interface)
+ (file (merge-pathnames (string-to-filename interface)
#P"/etc/network/interfaces.d/")))
(if (remote-exists-p file)
:no-change
diff --git a/src/property/periodic.lisp b/src/property/periodic.lisp
index 437ed41..4a75182 100644
--- a/src/property/periodic.lisp
+++ b/src/property/periodic.lisp
@@ -41,7 +41,7 @@ user."
(define-function-property-combinator at-most* (period desc propapp)
(symbol-macrolet
((flagfile (merge-pathnames
- (string->filename desc)
+ (string-to-filename desc)
(merge-pathnames "at-most/"
(get-connattr :consfigurator-cache)))))
(destructuring-bind (psym . args) propapp