aboutsummaryrefslogtreecommitdiff
path: root/src/property
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:38:15 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:39:44 -0700
commit3019bfea87ab6df33845f3bf7f7df03a33a5970d (patch)
treebcd220b1ca0ba232e19bbd002a6d21d492008317 /src/property
parent953b38327019b070f27e247f9116d0c51f8d9bac (diff)
downloadconsfigurator-3019bfea87ab6df33845f3bf7f7df03a33a5970d.tar.gz
convert PACKAGE:*CONSFIGURATOR-SYSTEM-DEPENDENCIES* to a constant
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property')
-rw-r--r--src/property/package.lisp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/property/package.lisp b/src/property/package.lisp
index c4bb24c..7244d51 100644
--- a/src/property/package.lisp
+++ b/src/property/package.lisp
@@ -18,8 +18,9 @@
(in-package :consfigurator.property.package)
(named-readtables:in-readtable :consfigurator)
-(defparameter *consfigurator-system-dependencies*
- '(:apt ("build-essential" "libacl1-dev" "libcap-dev")))
+(define-constant +consfigurator-system-dependencies+
+ '(:apt ("build-essential" "libacl1-dev" "libcap-dev"))
+ :test #'equal)
(defgeneric %command (package-manager)
(:documentation
@@ -54,7 +55,7 @@ particular package manager; otherwise, see what we can find on PATH.
Each of PACKAGE-LISTS is a plist where the keys identify package managers, and
where the values are lists of package names to install using that package
-manager. See PACKAGE:*CONSFIGURATOR-SYSTEM-DEPENDENCIES* for an example.
+manager. See PACKAGE:+CONSFIGURATOR-SYSTEM-DEPENDENCIES+ for an example.
This property should not typically be applied to hosts. It is preferable to
use an operating system-specific property, such as APT:INSTALLED. This