本文整理汇总了Golang中github.com/ankoh/vmlcm/vmware.VmrunWrapper.ListSnapshots方法的典型用法代码示例。如果您正苦于以下问题:Golang VmrunWrapper.ListSnapshots方法的具体用法?Golang VmrunWrapper.ListSnapshots怎么用?Golang VmrunWrapper.ListSnapshots使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/ankoh/vmlcm/vmware.VmrunWrapper
的用法示例。
在下文中一共展示了VmrunWrapper.ListSnapshots方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: getTemplateSnapshots
// getRunningVMPaths returns the paths of running VMs
func getTemplateSnapshots(
vmrun vmware.VmrunWrapper,
config *util.LCMConfiguration) ([]string, error) {
list, err := vmrun.ListSnapshots(config.TemplatePath)
if err != nil {
return nil, err
}
lines := strings.Split(list, "\n")
// Check if at least one line is there
if len(lines) < 1 {
return nil, fmt.Errorf("Failed to parse the listSnapshots command")
}
// Then remove the first line
lines = lines[1:]
var result []string
// Now remove empty lines
for _, line := range lines {
if len(line) == 0 {
continue
}
result = append(result, line)
}
return result, nil
}