aboutsummaryrefslogtreecommitdiff
path: root/consfigurator.asd
blob: bcd7940fc28e324ec42e101b8f29b1d26d2dbc15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(asdf:defsystem :consfigurator
  :description "Lisp declarative configuration management system"
  :version "0.0.1"
  :author "Sean Whitton <spwhitton@spwhitton.name>"
  :licence "GPL-3+"
  :serial t
  :depends-on (#:alexandria
	       #:babel
	       #:babel-streams
	       #:cl-ppcre
	       #:cl-interpol)
  :components ((:file "src/package")
	       (:file "src/util")
	       (:file "src/connection")
	       (:file "src/property")
	       (:file "src/propspec")
	       (:file "src/host")
	       (:file "src/deployment")
	       (:file "src/connection/local")
	       (:file "src/data")
	       (:file "src/connection/ssh")
	       (:file "src/connection/sudo")
	       (:file "src/connection/debian-sbcl")
	       (:file "src/property/cmd")
	       (:file "src/property/file")
	       (:file "src/data/asdf")
	       (:file "src/data/pgp")))