diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-06-14 12:37:34 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-06-14 12:37:34 +0200 |
commit | 1c59b1d247cd211122326f784848ea0b81bdbbf3 (patch) | |
tree | d71c4d8614764aad3b36a0ddba68f2ac1d1c78e5 /README.md | |
parent | 4f1e0e9b26ac00548112ed3da022a5012c9810e3 (diff) | |
download | automato-1c59b1d247cd211122326f784848ea0b81bdbbf3.tar.gz |
update readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -9,6 +9,9 @@ Object to group *States*, *Commands* and *Transports*. Endpoints can be seen as a *Transport Domain*, commands and states can only use the ones of their endpoint. In most cases this would be a logical host, like a Raspberry, PC or VM. +Generic info about an endpoint (hostname, ip, credentials, ...) can be set in the `info` field. +They can be used by *States*, *Commands* and *Transports*. + #### State A (numeric) value, or set of values, describing the current state of an *endpoint*. @@ -54,6 +57,9 @@ automato is configured in three `yml`-files `endpoints.yml` ```yaml host1: + info: + hostname: 'localhost' + mac:00:00:00:00:00 transports: ssh: class: automato.transport.SshTransport |