aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-13 17:47:25 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-14 20:09:11 -0700
commitf0d28fee8719b5aebe177544cf374750a6d01597 (patch)
tree07d48bf87b779f2a02a9a76b84f1ba844554bc99
parentb978906f411d58ab9397f1ae2f15aefd0c2b3175 (diff)
downloadconsfigurator-f0d28fee8719b5aebe177544cf374750a6d01597.tar.gz
SBUILD:STANDARD-DEBIAN-SCHROOT: rename param and &optional -> &key
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/property/sbuild.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/property/sbuild.lisp b/src/property/sbuild.lisp
index d5b90eb..1d9b30a 100644
--- a/src/property/sbuild.lisp
+++ b/src/property/sbuild.lisp
@@ -187,12 +187,12 @@ EOF :mode #o755)
(file:does-not-exist ,conf))))
;; Here we combine Propellor's Sbuild.osDebianStandard and Sbuild.update.
-(defpropspec standard-debian-schroot :posix (&optional (period :weekly))
+(defpropspec standard-debian-schroot :posix (&key (upgrade :weekly))
"Properties that will be wanted in almost any Debian sbuild schroot, but not
in sbuild schroots for other operating systems.
Includes replacing use of sbuild-update(1)."
(:desc "Standard Debian sbuild properties")
`(eseqprops (apt:standard-sources.list)
- (periodic:at-most ,period "sbuild schroot updated"
+ (periodic:at-most ,upgrade "sbuild schroot updated"
(apt:updated) (apt:upgraded) (apt:autoremoved))))