本文整理汇总了Golang中github.com/lxc/lxd.Client.UpdateServerConfig方法的典型用法代码示例。如果您正苦于以下问题:Golang Client.UpdateServerConfig方法的具体用法?Golang Client.UpdateServerConfig怎么用?Golang Client.UpdateServerConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/lxc/lxd.Client
的用法示例。
在下文中一共展示了Client.UpdateServerConfig方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: doDaemonConfigEdit
func (c *configCmd) doDaemonConfigEdit(client *lxd.Client) error {
// If stdin isn't a terminal, read text from it
if !termios.IsTerminal(int(syscall.Stdin)) {
contents, err := ioutil.ReadAll(os.Stdin)
if err != nil {
return err
}
newdata := shared.BriefServerState{}
err = yaml.Unmarshal(contents, &newdata)
if err != nil {
return err
}
_, err = client.UpdateServerConfig(newdata)
return err
}
// Extract the current value
config, err := client.ServerStatus()
if err != nil {
return err
}
brief := config.Brief()
data, err := yaml.Marshal(&brief)
if err != nil {
return err
}
// Spawn the editor
content, err := shared.TextEditor("", []byte(c.configEditHelp()+"\n\n"+string(data)))
if err != nil {
return err
}
for {
// Parse the text received from the editor
newdata := shared.BriefServerState{}
err = yaml.Unmarshal(content, &newdata)
if err == nil {
_, err = client.UpdateServerConfig(newdata)
}
// Respawn the editor
if err != nil {
fmt.Fprintf(os.Stderr, i18n.G("Config parsing error: %s")+"\n", err)
fmt.Println(i18n.G("Press enter to start the editor again"))
_, err := os.Stdin.Read(make([]byte, 1))
if err != nil {
return err
}
content, err = shared.TextEditor("", content)
if err != nil {
return err
}
continue
}
break
}
return nil
}