Some simplifications

This commit is contained in:
Ray Miller 2025-01-23 18:19:54 +00:00
parent e22e618142
commit 8a1e1b244f
Signed by: ray
GPG key ID: 043F786C4CD681B8
8 changed files with 78 additions and 27 deletions

View file

@ -19,10 +19,15 @@
(lambda ()
(run conn "rm" "-rf" tmp-dir)))))
(playbook "Test Playbook"
(play "Test play"
#:host "localhost"
(task
(install-aws-cli #:update? #t
#:install-dir (file-name-join* ($ #:fact.home-dir) ".local" "aws-cli")
#:bin-dir (file-name-join* ($ #:fact.home-dir) ".local" "bin")))))
(playbook
#:name "Test Playbook"
#:plays (list
(play
#:name "Test play"
#:host "localhost"
#:tasks (list
(task #:name "Install AWS CLI"
#:action (lambda ()
(install-aws-cli #:update? #t
#:install-dir (file-name-join* ($ #:fact.home-dir) ".local" "aws-cli")
#:bin-dir (file-name-join* ($ #:fact.home-dir) ".local" "bin"))))))))