Summary: backup script for libvirt managed VM Name: virt-backup Version: 0.1.3 Release: 1 Source0: %{name}-%{version}.tar.gz BuildArch: noarch License: GPL Group: Virtualization BuildRoot: %{_tmppath}/%{name}-buildroot Prefix: %{_prefix} Requires: lvm2 Requires: util-linux Requires: lzop, bzip2, pbzip2, gzip, xz Requires: perl(Sys::Virt) => 0.2.3 Requires: perl(XML::Simple) Requires: fuse-chunkfs Requires(pre): shadow-utils Requires(preun): initscripts, chkconfig Requires(postun): initscripts Requires(post): initscripts, chkconfig AutoReq: no %description This package contains utilities for virtualization stack on RHEL & ci. It provides for example SELinux policy, hook scripts to set permissions on ressources files etc... %prep %setup -q %build %install %{__rm} -rf $RPM_BUILD_ROOT %if %{?fedora}%{?rhel} <= 5 sed -i -e "s|/sbin/lvcreate|/usr/sbin/lvcreate|g" -e "s|/sbin/lvremove|/usr/sbin/lvremove|g" virt-backup %endif # Install backup script %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}/ %{__install} -m 0755 virt-backup $RPM_BUILD_ROOT%{_bindir}/ # Create backup dir %{__mkdir_p} $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/backup %clean %{__rm} -rf $RPM_BUILD_ROOT %pre getent group kvm >/dev/null || groupadd -g 36 -r kvm getent group qemu >/dev/null || groupadd -g 107 -r qemu getent passwd qemu >/dev/null || \ useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \ -c "qemu user" qemu %preun %post %files %defattr(-,root,root,-) %doc README CHANGELOG.git %{_bindir}/* %dir %attr(0770, qemu, kvm) %{_localstatedir}/lib/libvirt/backup %changelog * Tue MMar 5 2013 Daniel B. - 0.1.3-1 - Send /dev/null to lvm commands stdin * Tue Nov 20 2012 Daniel B. - 0.1.2-1 - Fix some spacing issue - re-add full path to lvcreate and lvremove - sleep to prevent race conditions * Thu Jun 28 2012 Daniel B. - 0.1.1-1 - Don't use absolute path for lvcreate and lvremove * Sun Jun 17 2012 Daniel B. - 0.1.0-1 - Move virt-backup to it's own RPM (and GIT repo)