ordo/examples/uptime.scm

9 lines
236 B
Scheme
Raw Normal View History

2025-06-28 18:12:49 +01:00
(use-modules (ordo core)
2025-07-06 14:43:14 +01:00
(ordo action remote-cmd))
2025-06-28 18:12:49 +01:00
(execute (task "uptime"
2025-07-06 14:43:14 +01:00
#:action remote-cmd
#:args (list "uptime" #:return car #:check? #t))
'all
#:continue-on-error? #t)