[ovirt-guest-agent/f17] Initial package version 1.0.6-4

Vinzenz Feenstra evilissimo at fedoraproject.org
Fri Feb 8 07:28:25 UTC 2013


commit ff48082dd00de8665026189ee710ad1fdd44a830
Author: Vinzenz Feenstra <vfeenstr at redhat.com>
Date:   Fri Feb 8 08:27:26 2013 +0100

    Initial package version 1.0.6-4
    
    Signed-off-by: Vinzenz Feenstra <vfeenstr at redhat.com>

 .gitignore             |    1 +
 ovirt-guest-agent.spec |  421 ++++++++++++++++++++++++++++++++++++++++++++++++
 sources                |    1 +
 3 files changed, 423 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..fe6089b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ovirt-guest-agent-1.0.6.tar.bz2
diff --git a/ovirt-guest-agent.spec b/ovirt-guest-agent.spec
new file mode 100644
index 0000000..f2c5087
--- /dev/null
+++ b/ovirt-guest-agent.spec
@@ -0,0 +1,421 @@
+
+%global release_version 4
+
+%global _moduledir /%{_lib}/security
+
+# Note this is not building any package
+# There exists no ovirt-guest-agent package
+Name: ovirt-guest-agent
+Version: 1.0.6
+Release: %{release_version}%{?dist}
+Summary: The oVirt Guest Agent
+Group: Applications/System
+License: ASL 2.0
+URL: http://wiki.ovirt.org/wiki/Category:Ovirt_guest_agent
+Source0: http://resources.ovirt.org/releases/3.2/src/%{name}-%{version}.tar.bz2
+BuildRequires: libtool
+BuildRequires: pam-devel
+BuildRequires: python2-devel
+%if 0%{?fedora} >= 18
+BuildRequires: systemd
+%else
+BuildRequires: systemd-units
+%endif
+Requires: %{name}-common = %{version}-%{release}
+
+# The ovirt-guest-agent main package is empty.
+# This has been done to avoid content duplication. The common package provides
+# the content for the main package to work around the issue with the other
+# subpackages. You cannot have a noarch main package and arch specific
+# subpackages.
+%package common
+Summary: Commonly used files of the oVirt Guest Agent
+BuildArch: noarch
+Requires: dbus-python
+Requires: rpm-python
+Requires: python-ethtool >= 0.4-1
+Requires: udev >= 095-14.23
+Requires: kernel > 2.6.18-238.5.0
+Requires: usermode
+%if 0%{?fedora} >= 18
+Requires(post): systemd
+Requires(preun): systemd
+Requires(postun): systemd
+%endif
+Provides: %{name} = %{version}-%{release}
+
+# If selinux is installed and has a version lower than tested, our package
+# would not work as expected.
+%if 0%{?fc16}
+Conflicts: selinux-policy < 3.10.0-77
+%endif
+%if 0%{?fedora} >= 17
+Conflicts: selinux-policy < 3.10.0-89
+%endif
+
+%package pam-module
+Summary: PAM module for the oVirt Guest Agent
+Requires: %{name} = %{version}-%{release}
+Requires: pam
+
+%package gdm-plugin
+Summary: GDM plug-in for the oVirt Guest Agent
+BuildRequires: dbus-glib-devel
+BuildRequires: gdm-devel
+BuildRequires: gobject-introspection-devel
+BuildRequires: gtk2-devel
+Requires: %{name} = %{version}-%{release}
+Requires: %{name}-pam-module = %{version}-%{release}
+Requires: gdm
+
+%package kdm-plugin
+Summary: KDM plug-in for the oVirt Guest Agent
+BuildRequires: kdebase-workspace-devel
+Requires: %{name} = %{version}-%{release}
+Requires: %{name}-pam-module = %{version}-%{release}
+Requires: kdm
+
+%description
+This is the oVirt management agent running inside the guest. The agent
+interfaces with the oVirt manager, supplying heart-beat info as well as
+run-time data from within the guest itself. The agent also accepts
+control commands to be run executed within the OS (like: shutdown and
+restart).
+
+%description common
+This is the oVirt management agent running inside the guest. The agent
+interfaces with the oVirt manager, supplying heart-beat info as well as
+run-time data from within the guest itself. The agent also accepts
+control commands to be run executed within the OS (like: shutdown and
+restart).
+
+%description pam-module
+The oVirt PAM module provides the functionality necessary to use the
+oVirt automatic log-in system.
+
+%description gdm-plugin
+The GDM plug-in provides the functionality necessary to use the
+oVirt automatic log-in system.
+
+%description kdm-plugin
+The KDM plug-in provides the functionality necessary to use the
+oVirt automatic log-in system.
+
+%prep
+%setup -q -n ovirt-guest-agent-%{version}
+
+%build
+%configure \
+    --enable-securedir=%{_moduledir} \
+    --includedir=%{_includedir}/security \
+    --with-pam-prefix=%{_sysconfdir}
+
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot}
+
+%pre common
+getent group ovirtagent >/dev/null || groupadd -r -g 175 ovirtagent
+getent passwd ovirtagent > /dev/null || \
+    /usr/sbin/useradd -u 175 -g 175 -o -r ovirtagent \
+    -c "oVirt Guest Agent" -d / -s /sbin/nologin
+exit 0
+
+%post common
+/sbin/udevadm trigger --subsystem-match="virtio-ports" \
+    --attr-match="name=com.redhat.rhevm.vdsm"
+
+%if 0%{?fedora} < 18
+    /bin/systemctl daemon-reload
+%else
+    # New macro for F18+
+    %systemd_post ovirt-guest-agent.service
+%endif
+
+%preun common
+if [ "$1" -eq 0 ]
+then
+    %if 0%{?fedora} < 18
+        /bin/systemctl stop ovirt-guest-agent.service > /dev/null 2>&1
+    %else
+        # New macro for F18+
+        %systemd_preun ovirt-guest-agent.service
+    %endif
+
+    # Send an "uninstalled" notification to vdsm.
+    VIRTIO=`grep "^device" %{_sysconfdir}/ovirt-guest-agent.conf | awk '{ print $3; }'`
+    if [ -w $VIRTIO ]
+    then
+        echo '{ "__name__" : "uninstalled" }' >> $VIRTIO
+    fi
+fi
+
+%postun common
+if [ "$1" -eq 0 ]
+then
+    %if 0%{?fedora} < 17
+        /bin/systemctl daemon-reload
+    %endif
+
+    /sbin/udevadm trigger --subsystem-match="virtio-ports" \
+        --attr-match="name=com.redhat.rhevm.vdsm"
+fi
+
+%if 0%{?fedora} < 18
+    if [ "$1" -ge 1 ]; then
+        /bin/systemctl try-restart ovirt-guest-agent.service >/dev/null 2>&1 || :
+    fi
+%else
+    # New macro for F18+
+    %systemd_postun_with_restart ovirt-guest-agent.service
+%endif
+
+%post gdm-plugin
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun gdm-plugin
+if [ $1 -eq 0 ] ; then
+    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans gdm-plugin
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%files common
+%dir %attr (755,ovirtagent,ovirtagent) %{_localstatedir}/log/ovirt-guest-agent
+%dir %attr (755,root,root) %{_datadir}/ovirt-guest-agent
+
+%config(noreplace) %{_sysconfdir}/ovirt-guest-agent.conf
+
+%doc AUTHORS COPYING NEWS README
+
+%config(noreplace) %{_sysconfdir}/pam.d/ovirt-locksession
+%config(noreplace) %{_sysconfdir}/pam.d/ovirt-shutdown
+%config(noreplace) %{_sysconfdir}/pam.d/ovirt-hibernate
+%config(noreplace) %attr (644,root,root) %{_sysconfdir}/udev/rules.d/55-ovirt-guest-agent.rules
+%config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.ovirt.vdsm.Credentials.conf
+%config(noreplace) %{_sysconfdir}/security/console.apps/ovirt-locksession
+%config(noreplace) %{_sysconfdir}/security/console.apps/ovirt-shutdown
+%config(noreplace) %{_sysconfdir}/security/console.apps/ovirt-hibernate
+
+%attr (755,root,root) %{_datadir}/ovirt-guest-agent/ovirt-guest-agent.py*
+
+%{_datadir}/ovirt-guest-agent/OVirtAgentLogic.py*
+%{_datadir}/ovirt-guest-agent/VirtIoChannel.py*
+%{_datadir}/ovirt-guest-agent/CredServer.py*
+%{_datadir}/ovirt-guest-agent/GuestAgentLinux2.py*
+%{_datadir}/ovirt-guest-agent/ovirt-locksession
+%{_datadir}/ovirt-guest-agent/ovirt-shutdown
+%{_datadir}/ovirt-guest-agent/ovirt-hibernate
+
+%attr (755,root,root) %{_datadir}/ovirt-guest-agent/LockActiveSession.py*
+%attr (755,root,root) %{_datadir}/ovirt-guest-agent/hibernate
+
+%{_unitdir}/ovirt-guest-agent.service
+
+
+%files pam-module
+%{_moduledir}/pam_ovirt_cred.so
+%exclude %{_moduledir}/pam_ovirt_cred.a
+%exclude %{_moduledir}/pam_ovirt_cred.la
+
+
+%files gdm-plugin
+%config(noreplace) %{_sysconfdir}/pam.d/gdm-ovirtcred
+%{_datadir}/icons/hicolor/*/*/*.png
+%dir %{_datadir}/gdm/simple-greeter/extensions/ovirtcred
+%{_datadir}/gdm/simple-greeter/extensions/ovirtcred/page.ui
+%{_libdir}/gdm/simple-greeter/extensions/libovirtcred.so
+# Unwanted files
+%exclude %{_libdir}/gdm/simple-greeter/extensions/libovirtcred.a
+%exclude %{_libdir}/gdm/simple-greeter/extensions/libovirtcred.la
+
+%files kdm-plugin
+%config(noreplace) %{_sysconfdir}/pam.d/kdm-ovirtcred
+%attr (755,root,root) %{_libdir}/kde4/kgreet_ovirtcred.so
+
+%changelog
+* Tue Feb 07 2013 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.6-4
+- Removal of unused global variable _kdmrc
+
+* Tue Jan 22 2013 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.6-3
+- All config files are now 'noreplace'
+- Refreshing the gtk icon cache during installation
+- The package is not modifying the kdmrc any longer
+- Using new systemd macros where appropriate
+
+* Wed Dec 05 2012 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.6-2
+- Upstream source adjusted for ovirt-guest-agent version 1.0.6
+
+* Wed Dec 05 2012 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.6-1
+- New upstream version 1.0.6
+- Upstream build system is now taking care of folder creation
+- Upstream build system is now taking care of systemd units installation
+
+* Wed Nov 28 2012 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.5-3
+- License has been changed to Apache Software License 2.0
+
+* Fri Oct 19 2012 Vinzenz Feenstra <vfeenstr at redhat.com> - 1.0.5-2
+- introduced ovirt-guest-agent-common noarch package which provides
+  ovirt-guest-agent and avoids duplication of the same package content
+- fixed various rpmlint errors and warnings
+- added required build requires
+- removed unnecessary build requires
+- removed unnecessary call to autoreconf in setup section
+- marked config files as such
+- excluded unwanted files instead of deleting them
+- removed consolehelper based symlinks - now in upstream make install
+
+* Sun May 20 2012 Gal Hammer <ghammer at redhat.com> - 1.0.5-1
+- fixed 'udevadm trigger' command line (bz#819945).
+- fixed various rpmlint errors and warnings.
+
+* Tue May 15 2012 Gal Hammer <ghammer at redhat.com> - 1.0.4-1
+- replaced "with" usage with a python 2.4 compatible way.
+- added files to support RHEL-5 distribution.
+- added more detailed memory statistics.
+- fixed build on fc-17 (use the _unitdir macro).
+
+* Sun Apr 15 2012 Gal Hammer <ghammer at redhat.com> - 1.0.3-2
+- removed the RHEL distribution support for the review process.
+- removed BuildRoot header and clean section.
+- fixed user creation.
+
+* Tue Apr 10 2012 Gal Hammer <ghammer at redhat.com> - 1.0.3-1
+- package was renamed to rhevm-guest-agent in RHEL distribution.
+- fixed gdm-plugin build requires.
+Resolves: BZ#803503
+
+* Wed Mar 28 2012 Gal Hammer <ghammer at redhat.com> - 1.0.2-1
+- included a gpl-v2 copying file.
+- build the gdm-plugin using the gdm-devel package.
+- added a support for RHEL distribution.
+
+* Wed Feb 22 2012 Gal Hammer <ghammer at redhat.com> - 1.0.1-2
+- updated required selinux-policy version (related to rhbz#791113).
+- added a support to hibernate (s4) command.
+- renamed user name to ovirtguest.
+- reset version numbering after changing the package name.
+
+* Thu Sep 27 2011 Gal Hammer <ghammer at redhat.com> - 2.3.15-1
+- fixed disk usage report when mount point include spaces.
+- added a minimum version for python-ethtool.
+Resolves: BZ#736426
+
+* Thu Sep 22 2011 Gal Hammer <ghammer at redhat.com> - 2.3.14-1
+- added a new 'echo' command to support testing.
+Resolves: BZ#736426
+
+* Thu Sep 15 2011 Gal Hammer <ghammer at redhat.com> - 2.3.13-1
+- report new network interaces information (ipv4, ipv6 and
+  mac address).
+- added disks usage report.
+- a new json-based protocol with the vdsm.
+Resolves: BZ#729252 BZ#736426
+
+* Mon Aug  8 2011 Gal Hammer <ghammer at redhat.com> - 2.3.12-1
+- replaced password masking with a fixed-length string.
+Resolves: BZ#727506
+
+* Thu Aug  4 2011 Gal Hammer <ghammer at redhat.com> - 2.3.11-1
+- send an 'uninstalled' notification to vdsm
+- mask the user's password in the credentials block
+Resolves: BZ#727647 BZ#727506
+
+* Mon Aug  1 2011 Gal Hammer <ghammer at redhat.com> - 2.3.10-2
+- fixed selinux-policy required version.
+Resolves: BZ#694088
+
+* Mon Jul 25 2011 Gal Hammer <ghammer at redhat.com> - 2.3.10-1
+- various fixes after failing the errata's rpmdiff.
+- added selinux-policy dependency.
+Resolves: BZ#720144 BZ#694088
+
+* Thu Jun 16 2011 Gal Hammer <ghammer at redhat.com> - 2.3.9-1
+- read report rate values from configuration file.
+- replaced executing privilege commands from sudo to
+  consolehelper.
+Resolves: BZ#713079 BZ#632959
+
+* Tue Jun 14 2011 Gal Hammer <ghammer at redhat.com> - 2.3.8-1
+- execute the agent with a non-root user.
+- changed the shutdown timeout value to work in minutes.
+- update pam config files to work with selinux.
+- fixed the local user check when stripping the domain part.
+Resolves: BZ#632959 BZ#711428 BZ#694088 BZ#661713 BZ#681123
+
+* Tue May 25 2011 Gal Hammer <ghammer at redhat.com> - 2.3.7-1
+- stopped removing the domain part from the user name.
+- show only network interfaces that are up and running.
+Resolves: BZ#661713 BZ#681123 BZ#704845
+
+* Mon Apr 4 2011 Gal Hammer <ghammer at redhat.com> - 2.3.6-1
+- added kdm greeter plug-in.
+Resolves: BZ#681123
+
+* Mon Mar 14 2011 Gal Hammer <ghammer at redhat.com> - 2.3.5-1
+- replaced rhevcredserver execution from blocking main loop to
+  context's iteration (non-blocking).
+Resolves: BZ#683493
+
+* Thu Mar 10 2011 Gal Hammer <ghammer at redhat.com> - 2.3.4-1
+- added some sleep-ing to init script in order to give udev
+  some time to create the symbolic links.
+- changed the kernel version condition.
+Resolves: BZ#676625 BZ#681527
+
+* Wed Mar 2 2011 Gal Hammer <ghammer at redhat.com> - 2.3.3-1
+- removed unused file (rhevcredserver) from rhel-5 build.
+- added udev and kernel minimum version requirment.
+- fixed pid file location in spec file.
+Resolves: BZ#681524 BZ#681527 BZ#681533
+
+* Tue Mar 1 2011 Gal Hammer <ghammer at redhat.com> - 2.3.2-1
+- updated the agent's makefile to work with auto-tools.
+- added sub packages to support the single-sign-on feature.
+- added -h parameter to shutdown command in order to halt the vm
+  after shutdown.
+- converted configuration file to have unix-style line ending.
+- added redhat-rpm-config to build requirements in order to
+  include *.pyc and *.pyo in the rpm file.
+Resolves: BZ#680107 BZ#661713 BZ#679470 BZ#679451
+
+* Wed Jan 19 2011 Gal Hammer <ghammer at redhat.com> - 2.3-7
+- fixed files' mode to include execution flag.
+Resolves: BZ#670476
+
+* Mon Jan 17 2011 Gal Hammer <ghammer at redhat.com> - 2.3-6
+- fixed the way the exit code was returned. the script always
+  return 0 (success) because the main program ended and errors
+  from the child process were lost.
+Resolves: BZ#658092
+
+* Thu Dec 23 2010 Gal Hammer <ghammer at redhat.com> - 2.3-5
+- added description to startup/shutdown script in order to support
+  chkconfig.
+- a temporary fix to the 100% cpu usage when the vdsm doesn't
+  listen to the virtio-serial.
+Resolves: BZ#639702
+
+* Sun Dec 19 2010 Gal Hammer <ghammer at redhat.com> - 2.3-4
+- BZ#641886: lock command now handle both gnome and kde.
+Resolves: BZ#641886
+
+* Tue Dec 07 2010 Barak Azulay <bazulay at redhat.com> - 2.3-3
+- BZ#660343 load virtio_console module before starting the daemon.
+- BZ#660231 register daemon for startup.
+Resolves: BZ#660343 BZ#660231
+
+* Wed Dec 05 2010 Barak Azulay <bazulay at redhat.com> - 2.3-2
+- initial build for RHEL-6
+- works over vioserial
+- Agent reports only heartbeats, IPs, app list
+- performs: shutdown & lock (the lock works only on gnome - when
+  ConsoleKit & gnome-screensaver is installed)
+Resolves: BZ#613059
+
+* Thu Aug 27 2010 Gal Hammer <ghammer at redhat.com> - 2.3-1
+- Initial build.
diff --git a/sources b/sources
index e69de29..b2aa9f6 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+7bb29799e5e28ea957c906c8375a8a41  ovirt-guest-agent-1.0.6.tar.bz2


More information about the scm-commits mailing list