8 lines
236 B
Scheme
8 lines
236 B
Scheme
(use-modules (ordo core)
|
|
(ordo action remote-cmd))
|
|
|
|
(execute (task "uptime"
|
|
#:action remote-cmd
|
|
#:args (list "uptime" #:return car #:check? #t))
|
|
'all
|
|
#:continue-on-error? #t)
|