15 lines
424 B
Scheme
15 lines
424 B
Scheme
(use-modules
|
|
(ordo playbook)
|
|
(ordo play)
|
|
(ordo interceptor apt))
|
|
|
|
(playbook
|
|
#:name "APT operations"
|
|
#:plays (list
|
|
(play
|
|
#:name "Test APT operations"
|
|
#:host '(tagged/any #:ubuntu #:debian)
|
|
#:interceptors (list
|
|
(apt:update)
|
|
(apt:dist-upgrade)
|
|
(map apt:install (list "curl" "ca-certificates"))))))
|