func (c *networkCmd) doNetworkAttach(client *lxd.Client, name string, args []string) error { if len(args) < 1 || len(args) > 2 { return errArgs } container := args[0] devName := name if len(args) > 1 { devName = args[1] } network, err := client.NetworkGet(name) if err != nil { return err } nicType := "macvlan" if network.Type == "bridge" { nicType = "bridged" } props := []string{fmt.Sprintf("nictype=%s", nicType), fmt.Sprintf("parent=%s", name)} resp, err := client.ContainerDeviceAdd(container, devName, "nic", props) if err != nil { return err } return client.WaitForSuccess(resp.Operation) }