8 lines
194 B
Scheme
8 lines
194 B
Scheme
(use-modules (ordo playbook))
|
|
|
|
(playbook
|
|
#:name "Example playbook"
|
|
#:vars '((foo . 1) (bar . "baz"))
|
|
#:plays (list
|
|
(play #:name "Example play"
|
|
#:host "localhost")))
|