Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
d222626a
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d222626a
编写于
6月 22, 2010
作者:
C
Chris Lalancette
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Implement virsh managedsave-remove command.
Signed-off-by:
N
Chris Lalancette
<
clalance@redhat.com
>
上级
269aa804
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
61 addition
and
0 deletion
+61
-0
tools/virsh.c
tools/virsh.c
+55
-0
tools/virsh.pod
tools/virsh.pod
+6
-0
未找到文件。
tools/virsh.c
浏览文件 @
d222626a
...
...
@@ -1432,6 +1432,60 @@ cmdManagedSave(vshControl *ctl, const vshCmd *cmd)
return
ret
;
}
/*
* "managedsave-remove" command
*/
static
const
vshCmdInfo
info_managedsaveremove
[]
=
{
{
"help"
,
N_
(
"Remove managed save of a domain"
)},
{
"desc"
,
N_
(
"Remove an existing managed save state file from a domain"
)},
{
NULL
,
NULL
}
};
static
const
vshCmdOptDef
opts_managedsaveremove
[]
=
{
{
"domain"
,
VSH_OT_DATA
,
VSH_OFLAG_REQ
,
N_
(
"domain name, id or uuid"
)},
{
NULL
,
0
,
0
,
NULL
}
};
static
int
cmdManagedSaveRemove
(
vshControl
*
ctl
,
const
vshCmd
*
cmd
)
{
virDomainPtr
dom
;
char
*
name
;
int
ret
=
FALSE
;
int
hassave
;
if
(
!
vshConnectionUsability
(
ctl
,
ctl
->
conn
))
return
FALSE
;
if
(
!
(
dom
=
vshCommandOptDomain
(
ctl
,
cmd
,
&
name
)))
return
FALSE
;
hassave
=
virDomainHasManagedSaveImage
(
dom
,
0
);
if
(
hassave
<
0
)
{
vshError
(
ctl
,
_
(
"Failed to check for domain managed save image"
));
goto
cleanup
;
}
if
(
hassave
)
{
if
(
virDomainManagedSaveRemove
(
dom
,
0
)
<
0
)
{
vshError
(
ctl
,
_
(
"Failed to remove managed save image for domain %s"
),
name
);
goto
cleanup
;
}
else
vshPrint
(
ctl
,
_
(
"Removed managedsave image for domain %s"
),
name
);
}
else
vshPrint
(
ctl
,
_
(
"Domain %s has no manage save image; removal skipped"
),
name
);
ret
=
TRUE
;
cleanup:
virDomainFree
(
dom
);
return
ret
;
}
/*
* "schedinfo" command
*/
...
...
@@ -9207,6 +9261,7 @@ static const vshCmdDef commands[] = {
{
"iface-destroy"
,
cmdInterfaceDestroy
,
opts_interface_destroy
,
info_interface_destroy
},
{
"managedsave"
,
cmdManagedSave
,
opts_managedsave
,
info_managedsave
},
{
"managedsave-remove"
,
cmdManagedSaveRemove
,
opts_managedsaveremove
,
info_managedsaveremove
},
{
"nodeinfo"
,
cmdNodeinfo
,
NULL
,
info_nodeinfo
},
...
...
tools/virsh.pod
浏览文件 @
d222626a
...
...
@@ -380,6 +380,12 @@ Ask libvirt to save a running domain state in a place managed by libvirt.
If libvirt is asked to restart the domain later on it will resume it from
the saved domain state (and the state is discarded).
=item B<managedsave-remove> I<domain-id>
Remove the managed save file for a domain if it exists. The next time the
domain is started it will not restore to its previous state but instead will
do a full boot.
=item B<migrate> optional I<--live> I<--suspend> I<domain-id> I<desturi> I<migrateuri>
Migrate domain to another host. Add --live for live migration; --suspend
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录