SetVariable sets the value of the specified key
(key, value string)
| 233 | |
| 234 | // SetVariable sets the value of the specified key |
| 235 | func (m *etcdMachineInterface) SetVariable(key, value string) error { |
| 236 | err := validateVariable(key, value) |
| 237 | if err != nil { |
| 238 | return err |
| 239 | } |
| 240 | return m.selfSet(key, value) |
| 241 | } |
| 242 | |
| 243 | // DeleteVariable erases the entry specified by key |
| 244 | func (m *etcdMachineInterface) DeleteVariable(key string) error { |
nothing calls this directly
no test coverage detected