// EnsureDead sets the machine lifecycle to Dead if it is Alive or // Dying. It does nothing otherwise. func (m *Machine) EnsureDead() error { var result params.ErrorResults args := params.Entities{ Entities: []params.Entity{{Tag: m.tag}}, } err := m.st.caller.Call("Machiner", "", "EnsureDead", args, &result) if err != nil { return err } return result.OneError() }
// EnsureDead sets the unit lifecycle to Dead if it is Alive or // Dying. It does nothing otherwise. func (u *Unit) EnsureDead() error { var result params.ErrorResults args := params.Entities{ Entities: []params.Entity{{Tag: u.tag}}, } err := u.st.caller.Call("Uniter", "", "EnsureDead", args, &result) if err != nil { return err } return result.OneError() }
// Remove removes the unit from state, calling EnsureDead first, then Remove. // It will fail if the unit is not present. func (u *Unit) Remove() error { var result params.ErrorResults args := params.Entities{ Entities: []params.Entity{{Tag: u.tag}}, } err := u.st.caller.Call("Deployer", "", "Remove", args, &result) if err != nil { return err } return result.OneError() }
// SetStatus sets the status of the machine. func (m *Machine) SetStatus(status params.Status, info string) error { var result params.ErrorResults args := params.SetStatus{ Entities: []params.SetEntityStatus{ {Tag: m.tag, Status: status, Info: info}, }, } err := m.st.caller.Call("Machiner", "", "SetStatus", args, &result) if err != nil { return err } return result.OneError() }
// SetPassword sets the unit's password. func (u *Unit) SetPassword(password string) error { var result params.ErrorResults args := params.PasswordChanges{ Changes: []params.PasswordChange{ {Tag: u.tag, Password: password}, }, } err := u.st.caller.Call("Deployer", "", "SetPasswords", args, &result) if err != nil { return err } return result.OneError() }
// SetPassword sets the password associated with the agent's entity. func (m *Entity) SetPassword(password string) error { var results params.ErrorResults args := params.PasswordChanges{ Changes: []params.PasswordChange{{ Tag: m.tag, Password: password, }}, } err := m.st.caller.Call("Agent", "", "SetPasswords", args, &results) if err != nil { return err } return results.OneError() }
// SetTools sets the tools associated with the entity // with the given tag, which must be the tag // of the entity that the upgrader is running // on behalf of. func (st *State) SetTools(tag string, tools *tools.Tools) error { var results params.ErrorResults args := params.SetAgentsTools{ AgentTools: []params.SetAgentTools{{ Tag: tag, Tools: tools, }}, } err := st.caller.Call("Upgrader", "", "SetTools", args, &results) if err != nil { // TODO: Not directly tested return err } return results.OneError() }