aboutsummaryrefslogtreecommitdiff
path: root/consfigurator.asd
blob: 35a25e7e62517ca19331d083d14fc06e6d1cda0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(asdf:defsystem :consfigurator
  :serial t
  :depends-on (#:alexandria
	       #:cl-ppcre
	       #:cl-interpol)
  :components ((:file "src/package")
	       (:file "src/util")
	       (:file "src/core")
	       (: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")))