[libvirt] [PATCH 1/3] Create /var/lib/libvirt/filesystems for LXC trees

Stefan Berger stefanb at linux.vnet.ibm.com
Tue Nov 1 15:00:08 UTC 2011


On 11/01/2011 08:31 AM, Daniel P. Berrange wrote:
> From: "Daniel P. Berrange"<berrange at redhat.com>
>
> We already have a /var/lib/libvirt/images for OS install images.
> We need a separate /var/lib/libvirt/filesystems for OS install
> trees, since SELinux labelling will be different
>
> * libvirt.spec.in: Add /var/lib/libvirt/filesystems
> * src/Makefile.am: Create /var/lib/libvirt/filesystems
> ---
>   libvirt.spec.in |    1 +
>   src/Makefile.am |    2 ++
>   2 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/libvirt.spec.in b/libvirt.spec.in
> index 262cfed..261f34c 100644
> --- a/libvirt.spec.in
> +++ b/libvirt.spec.in
> @@ -1001,6 +1001,7 @@ rm -f $RPM_BUILD_ROOT%{_sysconfdir}/sysctl.d/libvirtd
>   %dir %{_localstatedir}/run/libvirt/
>
>   %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/images/
> +%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/filesystems/
>   %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/boot/
>   %dir %attr(0711, root, root) %{_localstatedir}/cache/libvirt/
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 5cbe1ac..c36664b 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -1522,6 +1522,7 @@ EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)
>   install-data-local:
>   	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt"
>   	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/images"
> +	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems"
>   	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/boot"
>   if HAVE_SANLOCK
>   	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock"
> @@ -1567,6 +1568,7 @@ endif
>   uninstall-local::
>   	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt" ||:
>   	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/images" ||:
> +	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems" ||:
>   	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/boot" ||:
>   if HAVE_SANLOCK
>   	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock" ||:
Following that it's similar to what already exists -- ACK




More information about the libvir-list mailing list