J S
9474199299
I created the first version of READ-SYSTEM. It parses a .service file into an associative list of hash-tables.
10 lines
341 B
Common Lisp
10 lines
341 B
Common Lisp
(defsystem :systemd-parse
|
|
:depends-on (:cl-ppcre)
|
|
:components ((:file "packages-systemd")
|
|
(:module "src"
|
|
:serial t
|
|
:components ((:file "read-service")
|
|
(:file "write-service")
|
|
(:file "service-opts")
|
|
))))
|