Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
168bcca9
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看板
提交
168bcca9
编写于
2月 21, 2018
作者:
D
Daniel P. Berrangé
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
daemon: move configuration files to src/remote
Signed-off-by:
N
Daniel P. Berrangé
<
berrange@redhat.com
>
上级
0f6260ad
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
27 addition
and
28 deletion
+27
-28
.gitignore
.gitignore
+0
-1
daemon/Makefile.am
daemon/Makefile.am
+0
-26
src/Makefile.am
src/Makefile.am
+27
-1
src/remote/libvirtd.aug
src/remote/libvirtd.aug
+0
-0
src/remote/libvirtd.conf
src/remote/libvirtd.conf
+0
-0
src/remote/test_libvirtd.aug.in
src/remote/test_libvirtd.aug.in
+0
-0
未找到文件。
.gitignore
浏览文件 @
168bcca9
...
...
@@ -61,7 +61,6 @@
/conftest.*
/daemon/libvirtd*.logrotate
/daemon/libvirtd.policy
/daemon/test_libvirtd.aug
/docs/aclperms.htmlinc
/docs/apibuild.py.stamp
/docs/devhelp/libvirt.devhelp
...
...
daemon/Makefile.am
浏览文件 @
168bcca9
...
...
@@ -20,35 +20,21 @@ CLEANFILES =
DISTCLEANFILES
=
EXTRA_DIST
=
\
libvirtd.conf
\
libvirtd.policy.in
\
libvirt.rules
\
libvirtd.sasl
\
libvirtd.sysctl
\
libvirtd.aug
\
libvirtd.logrotate.in
\
libvirtd.qemu.logrotate.in
\
libvirtd.lxc.logrotate.in
\
libvirtd.libxl.logrotate.in
\
libvirtd.uml.logrotate.in
\
test_libvirtd.aug.in
\
$(NULL)
BUILT_SOURCES
=
if
WITH_LIBVIRTD
confdir
=
$(sysconfdir)
/libvirt/
conf_DATA
=
libvirtd.conf
augeasdir
=
$(datadir)
/augeas/lenses
augeas_DATA
=
libvirtd.aug
augeastestsdir
=
$(datadir)
/augeas/lenses/tests
augeastests_DATA
=
test_libvirtd.aug
CLEANFILES
+=
test_libvirtd.aug
if
WITH_POLKIT
if
WITH_POLKIT0
policydir
=
$(datadir)
/PolicyKit/policy
...
...
@@ -181,18 +167,6 @@ install-sysctl:
uninstall-sysctl
:
endif
!
WITH_SYSCTL
check-local
:
check-augeas
AUG_GENTEST
=
$(PERL)
$(top_srcdir)
/build-aux/augeas-gentest.pl
test_libvirtd.aug
:
test_libvirtd.aug.in $(srcdir)/libvirtd.conf
$(AM_V_GEN)$(AUG_GENTEST)
$(srcdir)
/libvirtd.conf
$<
$@
check-augeas
:
test_libvirtd.aug
$(AM_V_GEN)
if
test
-x
'
$(AUGPARSE)
'
;
then
\
'
$(AUGPARSE)
'
-I
$(srcdir)
test_libvirtd.aug
;
\
fi
else
!
WITH_LIBVIRTD
install-data-local
:
install-data-sasl
uninstall-local
::
uninstall-data-sasl
...
...
src/Makefile.am
浏览文件 @
168bcca9
...
...
@@ -1370,6 +1370,14 @@ sbin_PROGRAMS += libvirtd
BUILT_SOURCES
+=
$(LIBVIRTD_GENERATED)
augeas_DATA
+=
remote/libvirtd.aug
augeastest_DATA
+=
test_libvirtd.aug
conf_DATA
+=
remote/libvirtd.conf
CLEANFILES
+=
tets_libvirtd.aug
libvirtd_SOURCES
=
$(LIBVIRTD_SOURCES)
libvirtd_CFLAGS
=
\
...
...
@@ -1411,6 +1419,11 @@ libvirtd_LDADD += \
$(NULL)
endif
WITH_LIBVIRTD
EXTRA_DIST
+=
\
remote/test_libvirtd.aug.in
\
remote/libvirtd.aug
\
remote/libvirtd.conf
\
$(NULL)
%protocol.c
:
%protocol.x %protocol.h $(srcdir)/rpc/genprotocol.pl
$(AM_V_GEN)$(PERL)
-w
$(srcdir)
/rpc/genprotocol.pl
$(RPCGEN)
-c
\
...
...
@@ -2149,11 +2162,12 @@ check-local: check-augeas
check-augeas-lockd
\
check-augeas-libxl
\
check-augeas-bhyve
\
check-augeas-libvirtd
\
$(NULL)
check-augeas
:
check-augeas-qemu check-augeas-lxc check-augeas-sanlock
\
check-augeas-lockd check-augeas-virtlockd check-augeas-libxl
\
check-augeas-bhyve check-augeas-virtlogd
check-augeas-bhyve check-augeas-virtlogd
check-augeas-libvirtd
AUG_GENTEST
=
$(PERL)
$(top_srcdir)
/build-aux/augeas-gentest.pl
EXTRA_DIST
+=
$(top_srcdir)
/build-aux/augeas-gentest.pl
...
...
@@ -2258,6 +2272,18 @@ check-augeas-virtlogd: test_virtlogd.aug
'
$(AUGPARSE)
'
-I
$(srcdir)
/logging test_virtlogd.aug
;
\
fi
if
WITH_LIBVIRTD
test_libvirtd.aug
:
remote/test_libvirtd.aug.in
\
remote/libvirtd.conf $(AUG_GENTEST)
$(AM_V_GEN)$(AUG_GENTEST)
remote/libvirtd.conf
$<
$@
check-augeas-libvirtd
:
test_libvirtd.aug
$(AM_V_GEN)
if
test
-x
'
$(AUGPARSE)
'
;
then
\
'
$(AUGPARSE)
'
-I
$(srcdir)
/remote test_libvirtd.aug
;
\
fi
else
!
WITH_LIBVIRTD
check-augeas-libvirtd
:
endif
!
WITH_LIBVIRTD
#
# Build our version script. This is composed of three parts:
#
...
...
daemon
/libvirtd.aug
→
src/remote
/libvirtd.aug
浏览文件 @
168bcca9
文件已移动
daemon
/libvirtd.conf
→
src/remote
/libvirtd.conf
浏览文件 @
168bcca9
文件已移动
daemon
/test_libvirtd.aug.in
→
src/remote
/test_libvirtd.aug.in
浏览文件 @
168bcca9
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录