aboutsummaryrefslogtreecommitdiff
path: root/consfigurator.asd
diff options
context:
space:
mode:
Diffstat (limited to 'consfigurator.asd')
-rw-r--r--consfigurator.asd26
1 files changed, 20 insertions, 6 deletions
diff --git a/consfigurator.asd b/consfigurator.asd
index e518632..24e0812 100644
--- a/consfigurator.asd
+++ b/consfigurator.asd
@@ -1,6 +1,6 @@
(defsystem "consfigurator"
:description "Lisp declarative configuration management system"
- :version "0.8.0"
+ :version "0.9.0"
:author "Sean Whitton <spwhitton@spwhitton.name>"
:licence "GPL-3+"
:serial t
@@ -14,8 +14,8 @@
#:cffi
(:feature :sbcl (:require #:sb-posix))
#:closer-mop
- #:trivial-backtrace
- #:trivial-macroexpand-all)
+ #:agnostic-lizard
+ #:trivial-backtrace)
:components ((:file "src/package")
(:file "src/reader")
(:file "src/util")
@@ -27,16 +27,17 @@
(:file "src/deployment")
(:file "src/connection/local")
(:file "src/data")
+ (:file "src/image")
(:file "src/property/cmd")
(:file "src/property/file")
(:file "src/property/etc-default")
(:file "src/property/os")
(:file "src/property/container")
+ (:file "src/property/periodic")
(:file "src/property/mount")
(:file "src/property/service")
(:file "src/property/apt")
(:file "src/property/chroot")
- (:file "src/property/live-build")
(:file "src/property/disk")
(:file "src/property/fstab")
(:file "src/property/crypttab")
@@ -46,12 +47,24 @@
(:file "src/property/ssh")
(:file "src/property/sshd")
(:file "src/property/locale")
+ (:file "src/property/reboot")
(:file "src/property/installer")
(:file "src/property/grub")
(:file "src/property/u-boot")
(:file "src/property/hostname")
(:file "src/property/network")
(:file "src/property/libvirt")
+ (:file "src/property/ccache")
+ (:file "src/property/schroot")
+ (:file "src/property/sbuild")
+ (:file "src/property/postfix")
+ (:file "src/property/cron")
+ (:file "src/property/lets-encrypt")
+ (:file "src/property/apache")
+ (:file "src/property/systemd")
+ (:file "src/property/firewalld")
+ (:file "src/property/timezone")
+ (:file "src/property/swap")
(:file "src/connection/shell-wrap")
(:file "src/connection/fork")
(:file "src/connection/rehome")
@@ -66,13 +79,14 @@
(:file "src/data/pgp")
(:file "src/data/git-snapshot")
(:file "src/data/gpgpubkeys")
- (:file "src/data/ssh-askpass"))
+ (:file "src/data/ssh-askpass")
+ (:file "src/data/local-file"))
:in-order-to ((test-op (test-op "consfigurator/tests"))))
(defsystem "consfigurator/tests"
:description
"Tests for Consfigurator, Lisp declarative configuration management system"
- :version "0.8.0"
+ :version "0.9.0"
:author "Sean Whitton <spwhitton@spwhitton.name>"
:licence "GPL-3+"
:serial t