ordo/examples/inventory.scm

24 lines
820 B
Scheme
Raw Normal View History

2025-06-01 15:50:12 +01:00
(use-modules (ordo connection)
(ordo inventory))
(list
2025-06-28 18:12:49 +01:00
(host #:name "root@little-rascal"
#:connection (local-connection #:become? #t)
2025-06-01 15:50:12 +01:00
#:tags '(#:linux #:guix))
2025-06-28 18:12:49 +01:00
(host #:name "root@limiting-factor"
#:connection (ssh-connection #:host "limiting-factor" #:user "core" #:become? #t)
2025-06-01 15:50:12 +01:00
#:tags '(#:linux #:coreos))
2025-06-28 18:12:49 +01:00
(host #:name "root@screw-loose"
#:connection (ssh-connection #:host "screw-loose" #:user "core" #:become? #t)
2025-06-01 15:50:12 +01:00
#:tags '(#:linux #:coreos))
2025-06-28 18:12:49 +01:00
(host #:name "root@control-surface"
#:connection (ssh-connection #:host "control-surface" #:user "ray" #:become? #t)
#:tags '(#:linux #:debian))
2025-06-28 18:12:49 +01:00
(host #:name "root@cargo-cult"
#:connection (ssh-connection #:host "cargo-cult" #:user "ray" #:become? #t)
#:tags '(#:linux #:synology)))