diff options
author | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
commit | 9304f9286b2553497b7f9b46a9ed8336e5f7d2e3 (patch) | |
tree | 48f1ba83f6a22b38c059f6ffe3712c30a2711294 /src/c_lhosts.go | |
parent | func pointers yo (diff) | |
download | hardflip-9304f9286b2553497b7f9b46a9ed8336e5f7d2e3.tar.gz hardflip-9304f9286b2553497b7f9b46a9ed8336e5f7d2e3.tar.bz2 hardflip-9304f9286b2553497b7f9b46a9ed8336e5f7d2e3.tar.xz hardflip-9304f9286b2553497b7f9b46a9ed8336e5f7d2e3.tar.zst hardflip-9304f9286b2553497b7f9b46a9ed8336e5f7d2e3.zip |
ok
Diffstat (limited to 'src/c_lhosts.go')
-rw-r--r-- | src/c_lhosts.go | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/c_lhosts.go b/src/c_lhosts.go index d3e201e..026b65a 100644 --- a/src/c_lhosts.go +++ b/src/c_lhosts.go @@ -77,21 +77,23 @@ type JumpSettings struct { // 2: single cmd // 3: openstack type HostNode struct { - Protocol int8 `yaml:"type"` - Name string `yaml:"name"` - Host string `yaml:"host"` - Port uint16 `yaml:"port"` - User string `yaml:"user"` - Pass string `yaml:"pass"` - Priv string `yaml:"priv"` + Protocol int8 `yaml:"type"` + Name string `yaml:"name"` + Host string `yaml:"host"` + Port uint16 `yaml:"port"` + User string `yaml:"user"` + Pass string `yaml:"pass"` + Priv string `yaml:"priv"` Jump JumpSettings `yaml:"jump"` - Quality uint8 `yaml:"quality"` - Domain string `yaml:"domain"` - Width uint16 `yaml:"width"` - Height uint16 `yaml:"height"` - Dynamic bool `yaml:"dynamic"` - Note string `yaml:"note"` + Quality uint8 `yaml:"quality"` + Domain string `yaml:"domain"` + Width uint16 `yaml:"width"` + Height uint16 `yaml:"height"` + Dynamic bool `yaml:"dynamic"` + Note string `yaml:"note"` Drive map[string]string `yaml:"drive"` + Silent bool `yaml:"silent"` + Shell []string `yaml:"shell"` Stack StackSettings `yaml:"openstack"` Filename string Parent *DirsNode |