Radek Novacek 48f5308
%define use_systemd (0%{?fedora} && 0%{?fedora} >= 18) || (0%{?rhel} && 0%{?rhel} >= 7)
0781a7f
%if !%{use_systemd}
0781a7f
%global __python2 %{__python}
0781a7f
%global python2_sitelib %{python_sitelib}
0781a7f
%endif
0781a7f
0781a7f
%global release_number 1
0781a7f
0781a7f
%global git_tag %{name}-%{version}-%{release_number}
0781a7f
Radek Novacek 48f5308
Radek Novacek a483cbf
Name:           virt-who
0781a7f
Version:        0.21.2
0781a7f
Release:        %{release_number}%{?dist}
Radek Novacek a483cbf
Summary:        Agent for reporting virtual guest IDs to subscription-manager
Radek Novacek a483cbf
0781a7f
Group:          System Environment/Base
Radek Novacek a483cbf
License:        GPLv2+
0781a7f
URL:            https://github.com/virt-who/virt-who
0781a7f
Source0:        https://codeload.github.com/virt-who/virt-who/tar.gz/%{git_tag}#/%{name}-%{version}.tar.gz
0781a7f
BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
Radek Novacek a483cbf
Radek Novacek a483cbf
BuildArch:      noarch
Radek Novacek a483cbf
BuildRequires:  python2-devel
0781a7f
BuildRequires:  python-setuptools
0781a7f
Requires:       python-setuptools
Radek Novacek a483cbf
Requires:       libvirt-python
Radek Novacek 48f5308
# python-rhsm 1.10.10 has required call for guestId support
Radek Novacek 48f5308
Requires:       python-rhsm >= 1.10.10
Radek Novacek 375cedb
# python-suds is required for vSphere support
Radek Novacek 375cedb
Requires:       python-suds
Radek Novacek 375cedb
# m2crypto is required for Hyper-V support
Radek Novacek 375cedb
Requires:       m2crypto
Radek Novacek 48f5308
Requires:       python-requests
0781a7f
# python-argparse is required for Python 2.6 on EL6
0781a7f
%{?el6:Requires: python-argparse}
Radek Novacek 48f5308
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 48f5308
Requires: systemd-python
Radek Novacek 48f5308
BuildRequires: systemd
Radek Novacek 375cedb
Requires(post): systemd
Radek Novacek 375cedb
Requires(preun): systemd
Radek Novacek 375cedb
Requires(postun): systemd
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
Requires(post): chkconfig
Radek Novacek 48f5308
Requires(preun): chkconfig
Radek Novacek 48f5308
# This is for /sbin/service
Radek Novacek 48f5308
Requires(preun): initscripts
Radek Novacek 48f5308
%endif
Radek Novacek a483cbf
Radek Novacek a483cbf
%description
Radek Novacek a483cbf
Agent that collects information about virtual guests present in the system and
Radek Novacek a483cbf
report them to the subscription manager.
Radek Novacek a483cbf
Radek Novacek a483cbf
%prep
Radek Novacek a483cbf
%setup -q
Radek Novacek a483cbf
Radek Novacek a483cbf
Radek Novacek 48f5308
%build
Radek Novacek 48f5308
%{__python2} setup.py build
Radek Novacek a483cbf
Radek Novacek a483cbf
%install
Radek Novacek 48f5308
rm -rf $RPM_BUILD_ROOT
Radek Novacek 48f5308
%{__python2} setup.py install --root %{buildroot}
Radek Novacek 48f5308
%{__python2} setup.py install_config --root %{buildroot}
Radek Novacek 48f5308
%{__python2} setup.py install_man_pages --root %{buildroot}
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 48f5308
%{__python2} setup.py install_systemd --root %{buildroot}
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
%{__python2} setup.py install_upstart --root %{buildroot}
Radek Novacek 48f5308
%endif
Radek Novacek 48f5308
Radek Novacek 48f5308
mkdir -p %{buildroot}/%{_sharedstatedir}/%{name}/
Radek Novacek 48f5308
touch %{buildroot}/%{_sharedstatedir}/%{name}/key
Radek Novacek a483cbf
0781a7f
mkdir -p %{buildroot}/%{_datadir}/zsh/site-functions
0781a7f
install -m 644 virt-who-zsh %{buildroot}/%{_datadir}/zsh/site-functions/_virt-who
0781a7f
Radek Novacek a483cbf
# Don't run test suite in check section, because it need the system to be
Radek Novacek a483cbf
# registered to subscription-manager server
Radek Novacek a483cbf
0781a7f
%clean
0781a7f
rm -rf $RPM_BUILD_ROOT
0781a7f
Radek Novacek 375cedb
%post
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 375cedb
%systemd_post virt-who.service
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
# This adds the proper /etc/rc*.d links for the script
Radek Novacek 48f5308
/sbin/chkconfig --add virt-who
Radek Novacek 48f5308
%endif
Radek Novacek 48f5308
Radek Novacek 375cedb
Radek Novacek 375cedb
%preun
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 375cedb
%systemd_preun virt-who.service
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
if [ $1 -eq 0 ] ; then
Radek Novacek 48f5308
    /sbin/service virt-who stop >/dev/null 2>&1
Radek Novacek 48f5308
    /sbin/chkconfig --del virt-who
Radek Novacek 48f5308
fi
Radek Novacek 48f5308
%endif
Radek Novacek 375cedb
Radek Novacek 375cedb
%postun
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 48f5308
%systemd_postun_with_restart virt-who.service
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
if [ "$1" -ge "1" ] ; then
Radek Novacek 48f5308
    /sbin/service virt-who condrestart >/dev/null 2>&1 || :
Radek Novacek 48f5308
fi
Radek Novacek 48f5308
%endif
Radek Novacek 48f5308
Radek Novacek a483cbf
Radek Novacek a483cbf
%files
Radek Novacek 48f5308
%doc README.md LICENSE README.hyperv
Radek Novacek a483cbf
%{_bindir}/virt-who
Radek Novacek 48f5308
%{_bindir}/virt-who-password
Radek Novacek 48f5308
%{python2_sitelib}/*
Radek Novacek 48f5308
%if %{use_systemd}
Radek Novacek 375cedb
%{_unitdir}/virt-who.service
Radek Novacek 48f5308
%else
Radek Novacek 48f5308
%{_sysconfdir}/rc.d/init.d/virt-who
Radek Novacek 48f5308
%endif
0781a7f
%attr(600, root, root) %config(noreplace) %{_sysconfdir}/sysconfig/virt-who
0781a7f
%attr(700, root, root) %dir %{_sysconfdir}/virt-who.d
Radek Novacek 375cedb
%{_mandir}/man8/virt-who.8.gz
Radek Novacek 48f5308
%{_mandir}/man8/virt-who-password.8.gz
Radek Novacek 48f5308
%{_mandir}/man5/virt-who-config.5.gz
Radek Novacek 48f5308
%attr(700, root, root) %{_sharedstatedir}/%{name}
Radek Novacek 48f5308
%ghost %{_sharedstatedir}/%{name}/key
0781a7f
%{_datadir}/zsh/site-functions/_virt-who
Radek Novacek 48f5308
%{_sysconfdir}/virt-who.d/template.conf
0781a7f
%attr(600, root, root) %config(noreplace) %{_sysconfdir}/virt-who.conf
fb0a634
2d4137a
0781a7f
%changelog
0781a7f
* Thu Dec 07 2017 Christopher Snyder <csnyder@redhat.com> 0.21.2-1
0781a7f
- 1510310: Ensure that owner and env are required where necessary
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1512778: ESX should require username, password, and server values
0781a7f
  (csnyder@redhat.com)
0781a7f
0781a7f
* Tue Nov 28 2017 Kevin Howell <khowell@redhat.com> 0.21.1-1
0781a7f
- 1511308: Only ESX supports: exclude_host_parents and filter_host_parents.
0781a7f
  (jhnidek@redhat.com)
0781a7f
- 1509596: Use qemu+ssh transport if not provided (libvirt)
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1511308: Xen and Hyper-V do not support some filter options
0781a7f
  (jhnidek@redhat.com)
0781a7f
- 1510760: Ensure virt-who exits properly (w/ no good conf)
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1509606: Remove duplicate output of validation messages (csnyder@redhat.com)
0781a7f
- 1509597: Fix issue with cli consistancy check for vdsm (csnyder@redhat.com)
0781a7f
- 1509595: Only expect owner on HostGuestAssociationReports
0781a7f
  (csnyder@redhat.com)
0781a7f
0781a7f
* Mon Oct 30 2017 Christopher Snyder <csnyder@redhat.com> 0.21.0-1
0781a7f
- Update hypervisorCheckInAsync test for new config sections
0781a7f
  (csnyder@redhat.com)
0781a7f
- Update Config Refactor with changes from master (csnyder@redhat.com)
0781a7f
- Removed usage of old Config (not unit tests) (jhnidek@redhat.com)
0781a7f
- Further clean up of unit tests (jhnidek@redhat.com)
0781a7f
- Create Xen Config Subclass (jhnidek@redhat.com)
0781a7f
- Create Rhevm Config Subclass (jhnidek@redhat.com)
0781a7f
- Create VDSM config subclass (wpoteat@redhat.com)
0781a7f
- Clean up ConfigSection Unit tests (jhnidek@redhat.com)
0781a7f
- Adds FakeVirtConfigSection (csnyder@redhat.com)
0781a7f
- Configuration subclass for hyperv (wpoteat@redhat.com)
0781a7f
- Implement EsxConfigSection (khowell@redhat.com)
0781a7f
- Libvirtd ConfigSection Subclass (jhnidek@redhat.com)
0781a7f
- Adds EffectiveConfig, ConfigSection (csnyder@redhat.com)
0781a7f
- Adds warning message for deprecated env vars (csnyder@redhat.com)
0781a7f
- 1503700: Updates to the job polling frequency (csnyder@redhat.com)
0781a7f
- 1502821: Remove undocumented, broken env var "VIRTWHO_DISABLE_ASYNC"
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1466015: Warn of deprecation of command line options in next release
0781a7f
  (wpoteat@redhat.com)
0781a7f
- remove non-existant variable fake_is_hypervisor (adarshvritant@gmail.com)
0781a7f
- 1485865: Do not replace /etc/virt-who.conf on rpm upgrade
0781a7f
  (csnyder@redhat.com)
0781a7f
- Utilize the owner from the first report seen, if we do not know the owner
0781a7f
  (csnyder@redhat.com)
0781a7f
- Updates based on review (use str.format) (csnyder@redhat.com)
0781a7f
- Fix example fake config in man docs (adarshvritant@gmail.com)
0781a7f
- Add m2crypto dependency (adarshvritant@gmail.com)
0781a7f
- 1211435: Don't send host-to-geust mapping, when env, owner are wrong
0781a7f
  (jhnidek@redhat.com)
0781a7f
- 1408556: Log which owner updated mappings are being sent to
0781a7f
  (csnyder@redhat.com)
0781a7f
0781a7f
* Wed Jul 26 2017 Christopher Snyder <csnyder@redhat.com> 0.20.4-1
0781a7f
- Point Source0 to GitHub (csnyder@redhat.com)
0781a7f
0781a7f
* Thu Jul 13 2017 Christopher Snyder <csnyder@redhat.com> 0.20.2-1
0781a7f
- 1458184: better reading of environment variables (jhnidek@redhat.com)
0781a7f
- 1401867: Enable logging of rhsm module to rhsm.log (jhnidek@redhat.com)
0781a7f
- 1404117: Check parameter consistency and refactoring (jhnidek@redhat.com)
0781a7f
- Adds a patch number to virt-who versioning (csnyder@redhat.com)
0781a7f
- 1401420: xen supports only uuid/hostname as hypervisor_id
0781a7f
  (jhnidek@redhat.com)
0781a7f
- 1458674: Update use of result data to match the new async api
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1452436: virt-who prints host-to-quest mapping everytime (jhnidek@redhat.com)
0781a7f
- 1357761: Do not check passwords to be in latin1 encoding (jhnidek@redhat.com)
0781a7f
- 1457101: Continue running despite malformed configs (csnyder@redhat.com)
0781a7f
- 1409984: Retry initial report retrieval on connection timeout
0781a7f
  (csnyder@redhat.com)
0781a7f
0781a7f
* Fri Jun 09 2017 Christopher Snyder <csnyder@redhat.com> 0.20-1
0781a7f
- 1389729: Add missing xml section for test (fran@caosdigital.com)
0781a7f
- 1389729: virt-who incorrectly reports 'name' instead of 'hostname' for RHEV
0781a7f
  hosts (fran@caosdigital.com)
0781a7f
- 1450747: Continue running destination threads on internal failure
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1444718: Log name of config when duplicate reports are retrieved
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1447264: Keep running on InvalidPasswordFormat given other valid configs
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1448267: Fix polling behavior for oneshot, CTRL-C, 429 responses
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1369107: Update docs and log messages to show the *.conf requirement
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1436517: Fix api base detection for rhevm version 3 and 4
0781a7f
  (csnyder@redhat.com)
0781a7f
- 1442337: Send updates immediately the first run (csnyder@redhat.com)
0781a7f
- Do not join threads not started, fix up fake backend (csnyder@redhat.com)
0781a7f
- 1439317: Ensure reports are still sent despite duplicate configurations
0781a7f
  (csnyder@redhat.com)
0781a7f
- DestinationThreads now send all reports (csnyder@redhat.com)
0781a7f
- Adds IntervalThread base class and refactors Virt classes
0781a7f
  (csnyder@redhat.com)
0781a7f
- Remove reference to nonexistant method _set_option (csnyder@redhat.com)
0781a7f
- Update ConfigManager to produce destination and source mappings.
0781a7f
  (csnyder@redhat.com)
0781a7f
- Implemements a threadsafe datastore (csnyder@redhat.com)
0781a7f
- Move from using processes to threads (csnyder@redhat.com)
0781a7f
- 1436517: Set Version header for version detect (pcreech@redhat.com)
0781a7f
- 1403640: Fix syntax error in exception handling (pcreech@redhat.com)
0781a7f
- Update the spec file for builds on more downstream platforms
0781a7f
  (csnyder@redhat.com)
0781a7f
- Add releaser for rhel-7.4 (khowell@redhat.com)
0781a7f
- 1391512: Handle utf-8 within Xmlrpc transport (pcreech@redhat.com)
0781a7f
0781a7f
* Thu Mar 02 2017 Christopher Snyder <csnyder@redhat.com> 0.19-1
0781a7f
- 1415497: Support rhev4 auto detection and usage (pcreech@redhat.com)
0781a7f
- 1388577: Adding UTF-8 support (pcreech@redhat.com)
0781a7f
- 1410000: Include org_id in hv base channel (pcreech@redhat.com)
0781a7f
- 1400431: Fix AttributeError where val is missing (pcreech@redhat.com)
0781a7f
- 1405967: Filter host via glob or regex (pcreech@redhat.com)
0781a7f
- Adds --password option to virt-who-pasword (tstrachota@redhat.com)
0781a7f
- 1392390 Fix default interval handling (pcreech@redhat.com)
0781a7f
- BZ1405967  Add filter_hosts_regex, and exclude_hosts_regex to allow filtering
0781a7f
  large numbers of hosts easily (chris@chrisprocter.co.uk)
0781a7f
- 1369107: Only load files with .conf extension (pcreech@redhat.com)
0781a7f
- 1383436: Obey the interval setting (csnyder@redhat.com)
0781a7f
- 1299643: Update virt-who-config man page to include NO_PROXY
0781a7f
  (csnyder@redhat.com)
0781a7f
0781a7f
* Tue Oct 11 2016 Radek Novacek <rnovacek@redhat.com> 0.18-1
0781a7f
- Version 0.18
0781a7f
0781a7f
* Tue May 17 2016 Radek Novacek <rnovacek@redhat.com> 0.17-1
0781a7f
- Version 0.17
0781a7f
0781a7f
* Thu Dec 17 2015 Radek Novacek <rnovacek@redhat.com> 0.16-1
0781a7f
- Version 0.16
0781a7f
0781a7f
* Tue Aug 04 2015 Devan Goodwin <dgoodwin@rm-rf.ca> 0.15-1
0781a7f
- Update spec for renamed README.md. (dgoodwin@redhat.com)
0781a7f
- Moves fakevirt._decode() to util.decode() (csnyder@redhat.com)
0781a7f
- Adds the report.config.name to log message when refusing to send a report due
0781a7f
  to lack of change (csnyder@redhat.com)
0781a7f
- VirtWho: Clears list of reports on reload (csnyder@redhat.com)
0781a7f
- Revises change detection tests to account for changes in master
0781a7f
  (csnyder@redhat.com)
0781a7f
- Libvirtd: Sends a report on start up, and on events (csnyder@redhat.com)
0781a7f
- Removes trailing line at the end of the file (csnyder@redhat.com)
0781a7f
- Test_Esx: Test Oneshot to ensure it queues a report (csnyder@redhat.com)
0781a7f
- Esx: only queue data if the version has changed (csnyder@redhat.com)
0781a7f
- Test_VirtWho:Patches manager.Manager.fromOptions, removes unnecessary mocks
0781a7f
  (csnyder@redhat.com)
0781a7f
- Removes unhelpful debug log message (csnyder@redhat.com)
0781a7f
- Fix spacing, remove unused imports (csnyder@redhat.com)
0781a7f
- Test_VirtWho: Adds test to show same report will not be sent twice
0781a7f
  (csnyder@redhat.com)
0781a7f
- VirtWho: Adds basic change detection using report hashs (csnyder@redhat.com)
0781a7f
- Adds hash property to config (csnyder@redhat.com)
0781a7f
- Adds hash property to DomainListReport and HypervisorGuestAssociationReport
0781a7f
  (csnyder@redhat.com)
0781a7f
- Hypervisor: Adds getHash class method (csnyder@redhat.com)
0781a7f
- Limits interval settings (wpoteat@redhat.com)
0781a7f
- Retry sending data to subscription manager multiple times before dropping
0781a7f
  (rnovacek@redhat.com)
0781a7f
- SubscriptionManager: nicely order keys in debug report (rnovacek@redhat.com)
0781a7f
- Fix serialization of guest list in print mode (rnovacek@redhat.com)
0781a7f
- Do not exit oneshot mode if any job exists (rnovacek@redhat.com)
0781a7f
- SubscriptionManager: check if report result has failedUpdate item
0781a7f
  (rnovacek@redhat.com)
0781a7f
- SubscriptionManager: minor logging fixes (rnovacek@redhat.com)
0781a7f
- SubscriptionManager: add env var to disable asynchronous reporting
0781a7f
  (rnovacek@redhat.com)
0781a7f
- Check jobs status in increasing interval (rnovacek@redhat.com)
0781a7f
- Esx: report host even if it doesn't have any guests (rnovacek@redhat.com)
0781a7f
- Hypervisors reported by hyperv now include hostname. (csnyder@redhat.com)
0781a7f
- Removes completed jobs. (csnyder@redhat.com)
0781a7f
- Fix output format in print mode (rnovacek@redhat.com)
0781a7f
- Fix using empty list as default parameter value (rnovacek@redhat.com)
0781a7f
- satellite: support new hypervisor format (rnovacek@redhat.com)
0781a7f
- Fix tests failures (rnovacek@redhat.com)
0781a7f
- Removes timeouts for jobs. All jobs in the list are now executed just before
0781a7f
  a new report is sent. (csnyder@redhat.com)
0781a7f
- The virtwho loop now blocks on the report queue with a one second timeout
0781a7f
  (csnyder@redhat.com)
0781a7f
- Removes unnecessary imports and queue (csnyder@redhat.com)
0781a7f
- Rewrite readme to markdown syntax (rnovacek@redhat.com)
0781a7f
- CI: install unittest2 from pypi (rnovacek@redhat.com)
0781a7f
- CI: add -y option to add-apt-repository (rnovacek@redhat.com)
0781a7f
- CI: another attempt on cloud archive for libvirt (rnovacek@redhat.com)
0781a7f
- CI: try to install newer version of libvirt from cloud archive
0781a7f
  (rnovacek@redhat.com)
0781a7f
- CI: add libvirt-dev dependency (rnovacek@redhat.com)
0781a7f
- CI: install libvirt-python via pip (rnovacek@redhat.com)
0781a7f
- CI: another attempt without site-packages (rnovacek@redhat.com)
0781a7f
- CI: install python-rhsm dependencies (rnovacek@redhat.com)
0781a7f
- Adds support for facts in Hypervisor profile. (csnyder@redhat.com)
0781a7f
- Adds count of unchanged mappings to the info logged for the result of an
0781a7f
  async job (csnyder@redhat.com)
0781a7f
- Adds tests for jobs in virtwho, removes unnecessary tests for managerprocess.
0781a7f
  (csnyder@redhat.com)
0781a7f
- Changes to ensure backwards compatibility with python-rhsm
0781a7f
  (csnyder@redhat.com)
0781a7f
- Fixes RhevM.getHostGuestMapping() as suggested by rnovacek
0781a7f
  (csnyder@redhat.com)
0781a7f
- Adds layer to hypervisorId. Removes completed TODO (csnyder@redhat.com)
0781a7f
- Moves all functionality of managerprocess into virtwho. (csnyder@redhat.com)
0781a7f
- CI: use python with system side packages enabled (rnovacek@redhat.com)
0781a7f
- CI: install m2crypto using apt instead of pip (rnovacek@redhat.com)
0781a7f
- CI: install python-libvirt using apt instead of pip (rnovacek@redhat.com)
0781a7f
- Add requirements.txt and .travis.yml for the CI (rnovacek@redhat.com)
0781a7f
- Adds tests to verify the hostGuestAssociation is generated correctly.
0781a7f
  (csnyder@redhat.com)
0781a7f
- Updates libvirtd and tests to add host name to hypervisor profile
0781a7f
  (csnyder@redhat.com)
0781a7f
- Updates managerprocess with better logging and changes for the new tests.~~
0781a7f
  (csnyder@redhat.com)
0781a7f
- Updates to use the new hypervisor class (csnyder@redhat.com)
0781a7f
- print mode: format debug message about found hypervisors
0781a7f
  (rnovacek@redhat.com)
0781a7f
- Removing uncesasary comments (csnyder@redhat.com)
0781a7f
- Removes unused dictionary of jobs and associated methods.
0781a7f
  (csnyder@redhat.com)
0781a7f
- Fixes tests data to include "status" key. (csnyder@redhat.com)
0781a7f
- Updates tests to make use of new Hypervisor class. (csnyder@redhat.com)
0781a7f
- Host name is now included in the hypervisor profile using the new Hypervisor
0781a7f
  class (csnyder@redhat.com)
0781a7f
- Adds new Hypervisor class. (csnyder@redhat.com)
0781a7f
- Adds new test for the updates to subscriptionmanager.py (csnyder@redhat.com)
0781a7f
- Updates fakevirt to make use of virt.Guest classes (csnyder@redhat.com)
0781a7f
- Changes to ensure proper execution post-merge (csnyder@redhat.com)
0781a7f
- Removing more unnecessary prints (csnyder@redhat.com)
0781a7f
- Fixes oneshot mode for work with new managerprocess (csnyder@redhat.com)
0781a7f
- Cleaning up unneeded prints and adding more useful debug log messages
0781a7f
  (csnyder@redhat.com)
0781a7f
- Adds async job status polling for use with the new report API
0781a7f
  (csnyder@redhat.com)
0781a7f
- This (along with python-rhsm/csnyder/new_report_api ee38f15, allows
0781a7f
  communication with new report api (csnyder@redhat.com)
0781a7f
0781a7f
* Tue Jun 23 2015 Radek Novacek <rnovacek@redhat.com> 0.14-1
0781a7f
- Version 0.14
0781a7f
0781a7f
* Tue Mar 17 2015 Radek Novacek <rnovacek@redhat.com> 0.13-1
0781a7f
- new package built with tito
0781a7f
0781a7f
* Fri Feb 27 2015 Radek Novacek <rnovacek@redhat.com> 0.12-1
0781a7f
- Version 0.12
0781a7f
0781a7f
* Mon Sep 08 2014 Radek Novacek <rnovacek@redhat.com> 0.11-1
0781a7f
- Version 0.11
0781a7f
0781a7f
* Tue May 20 2014 Radek Novacek <rnovacek@redhat.com> 0.10-1
0781a7f
- Add directory with configuration files
0781a7f
- Version 0.10
0781a7f
0781a7f
* Thu Mar 13 2014 Radek Novacek <rnovacek@redhat.com> 0.9-1
0781a7f
- Remove libvirt dependency
0781a7f
- Add dependency on m2crypto
0781a7f
- Version 0.9
0781a7f
0781a7f
* Fri Sep 14 2012 Radek Novacek <rnovacek@redhat.com> 0.8-1
0781a7f
- Version 0.8
0781a7f
0781a7f
* Mon Jul 09 2012 Radek Novacek <rnovacek@redhat.com> 0.7-1
0781a7f
- Version 0.7
0781a7f
0781a7f
* Mon Feb 13 2012 Radek Novacek <rnovacek@redhat.com> 0.6-1
0781a7f
- Version 0.6
0781a7f
0781a7f
* Fri Dec 09 2011 Radek Novacek <rnovacek@redhat.com> 0.5-1
0781a7f
- VSphere support
0781a7f
- Req: python-suds
0781a7f
0781a7f
* Wed Nov 30 2011 Radek Novacek <rnovacek@redhat.com> 0.4-1
0781a7f
- Version 0.4
0781a7f
0781a7f
* Thu Oct 06 2011 Radek Novacek <rnovacek@redhat.com> - 0.3-2
0781a7f
- Requires python-rhsm >= 0.96.13 (contains fix for char limit in uuid list)
Radek Novacek 375cedb
Radek Novacek 375cedb
* Thu Sep 01 2011 Radek Novacek <rnovacek@redhat.com> - 0.3-1
Radek Novacek 375cedb
- Add initscript and configuration file
bbd8159
Radek Novacek a483cbf
* Mon Aug 22 2011 Radek Novacek <rnovacek@redhat.com> - 0.2-1
Radek Novacek a483cbf
- Update to upstream version 0.2
Radek Novacek a483cbf
- Add Requires: libvirt
Radek Novacek a483cbf
Radek Novacek a483cbf
* Fri Aug 19 2011 Radek Novacek <rnovacek@redhat.com> - 0.1-2
Radek Novacek a483cbf
- Add BuildRoot tag (the package will be in RHEL5)
Radek Novacek a483cbf
Radek Novacek a483cbf
* Wed Aug 10 2011 Radek Novacek <rnovacek@redhat.com> - 0.1-1
Radek Novacek a483cbf
- initial import