2025-01-26 14:30:04 +00:00
|
|
|
(use-modules
|
|
|
|
(ordo playbook)
|
|
|
|
(ordo play)
|
|
|
|
(ordo interceptor apt))
|
|
|
|
|
|
|
|
(playbook
|
|
|
|
#:name "APT operations"
|
|
|
|
#:plays (list
|
|
|
|
(play
|
|
|
|
#:name "Test APT operations"
|
2025-01-26 14:39:25 +00:00
|
|
|
#:host '(tagged/any #:ubuntu #:debian)
|
2025-01-26 14:30:04 +00:00
|
|
|
#:interceptors (list
|
|
|
|
(apt:update)
|
|
|
|
(apt:dist-upgrade)
|
|
|
|
(map apt:install (list "curl" "ca-certificates"))))))
|