aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--consfigurator.asd12
1 files changed, 9 insertions, 3 deletions
diff --git a/consfigurator.asd b/consfigurator.asd
index a28e339..35a25e7 100644
--- a/consfigurator.asd
+++ b/consfigurator.asd
@@ -1,9 +1,15 @@
(asdf:defsystem :consfigurator
:serial t
- :depends-on (#:cl-ppcre
- #:alexandria
+ :depends-on (#:alexandria
+ #:cl-ppcre
#:cl-interpol)
:components ((:file "src/package")
(:file "src/util")
(:file "src/core")
- (:file "src/connection/ssh")))
+ (:file "src/connection/ssh")
+ (:file "src/connection/local")
+ (:file "src/connection/debian-sbcl")
+ (:file "src/property/command")
+ (:file "src/property/file")
+ (:file "src/data/asdf")
+ (:file "src/data/pgp")))