aboutsummaryrefslogtreecommitdiff
path: root/consfigurator.asd
blob: 34dda3fd5bda362b08a9ae9779487d19aff8d424 (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
28
29
30
(asdf:defsystem :consfigurator
  :description "Lisp declarative configuration management system"
  :version "0.2.1"
  :author "Sean Whitton <spwhitton@spwhitton.name>"
  :licence "GPL-3+"
  :serial t
  :depends-on (#:alexandria
	       #:babel
	       #:babel-streams
	       #:cl-ppcre
	       #:cl-interpol
	       #:cffi)
  :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/shell-wrap")
	       (:file "src/connection/ssh")
	       (:file "src/connection/sudo")
	       (:file "src/connection/debian-sbcl")
	       (:file "src/connection/chroot/fork")
	       (:file "src/property/cmd")
	       (:file "src/property/file")
	       (:file "src/data/asdf")
	       (:file "src/data/pgp")))