Basic playbook functionality

This commit is contained in:
Ray Miller 2025-06-01 15:50:12 +01:00
parent 3685369de5
commit 38f08e8ce4
Signed by: ray
GPG key ID: 043F786C4CD681B8
8 changed files with 237 additions and 33 deletions

8
examples/playbook.scm Normal file
View file

@ -0,0 +1,8 @@
(use-modules (ordo playbook))
(playbook
#:name "Example playbook"
#:vars '((foo . 1) (bar . "baz"))
#:plays (list
(play #:name "Example play"
#:host "localhost")))