77d6311
%{!?python_version: %define python_version %(%{__python} -c "from distutils.sysconfig import get_python_version; print get_python_version()")}
Michael DeHaan 478efc9
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
%define is_suse %(test -e /etc/SuSE-release && echo 1 || echo 0)
Michael DeHaan 9089cc3
Michael DeHaan b3d31bd
Summary: Remote management framework
Michael DeHaan 478efc9
Name: func
Steve Salevan 9e9afce
Version: 0.30
bb735ee
Release: 13%{?dist}
b0574d3
Source0: https://git.fedorahosted.org/cgit/func.git/snapshot/%{name}-%{version}.tar.gz
b0574d3
Source1: funcd.service
b0574d3
Source2: %{name}.logrotate-init
b0574d3
Source3: %{name}.logrotate-service
Michael DeHaan 478efc9
License: GPLv2+
Michael DeHaan 478efc9
Group: Applications/System
bb735ee
Requires: python2 >= 2.3
bb735ee
Requires: python2-pyOpenSSL
bb735ee
Requires: python2-simplejson
Seth Vidal f8328ba
Requires: certmaster >= 0.28
255d8ee
Requires: logrotate
bb735ee
BuildRequires: python2-devel
Michael DeHaan 9089cc3
%if %is_suse
Michael DeHaan 9089cc3
BuildRequires: gettext-devel
Michael DeHaan 9089cc3
%else
bb735ee
BuildRequires: python2-setuptools
Michael DeHaan 478efc9
%endif
b0574d3
%if 0%{?fedora} >= 16 && 0%{?fedora} < 18
Steve Salevan f82e75a
BuildRequires: systemd-units
Steve Salevan f82e75a
Requires(post): systemd-sysv
Steve Salevan f82e75a
Requires(post): systemd-units
Steve Salevan f82e75a
Requires(preun): systemd-units
Steve Salevan f82e75a
Requires(postun): systemd-units
Steve Salevan f82e75a
%endif
b0574d3
%if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
b0574d3
BuildRequires: systemd
b0574d3
Requires(post): systemd
b0574d3
Requires(preun): systemd
b0574d3
Requires(postun): systemd
b0574d3
%endif
Michael DeHaan 478efc9
BuildArch: noarch
255d8ee
Url: https://fedorahosted.org/func/
Michael DeHaan 478efc9
Michael DeHaan 478efc9
%description
Michael DeHaan b3d31bd
func is a remote api for mangement, configuration, and monitoring of systems.
Michael DeHaan 478efc9
Michael DeHaan 478efc9
%prep
Michael DeHaan 478efc9
%setup -q
Michael DeHaan 478efc9
Michael DeHaan 478efc9
%build
Michael DeHaan 478efc9
%{__python} setup.py build
Michael DeHaan 478efc9
Michael DeHaan 478efc9
%install
Michael DeHaan 478efc9
test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
Michael DeHaan 9089cc3
%{__python} setup.py install --prefix=/usr --root=$RPM_BUILD_ROOT
285d9fc
touch $RPM_BUILD_ROOT/var/log/func/func.log
285d9fc
touch $RPM_BUILD_ROOT/var/log/func/audit.log
Steve Salevan 5796830
mkdir -p $RPM_BUILD_ROOT%{_bindir}
Steve Salevan 51b27a3
install -m 755 init-scripts/funcd $RPM_BUILD_ROOT%{_sysconfdir}/init.d/funcd
b0574d3
rm -f $RPM_BUILD_ROOT/etc/logrotate.d/func_rotate
b0574d3
install -D -p -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/etc/logrotate.d/func
Michael DeHaan 478efc9
b0574d3
%if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
b0574d3
install -D -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_unitdir}/funcd.service
Steve Salevan f82e75a
rm -rf $RPM_BUILD_ROOT/etc/init.d
b0574d3
install -D -p -m 0644 %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/func
Steve Salevan f82e75a
%endif
Steve Salevan f82e75a
b0574d3
# Convert everything to UTF-8
b0574d3
iconv -f iso-8859-1 -t utf-8 -o CHANGES.utf8 CHANGES
b0574d3
touch -r CHANGES CHANGES.utf8; mv -f CHANGES.utf8 CHANGES
b0574d3
Michael DeHaan 478efc9
%files
Michael DeHaan 478efc9
%defattr(-, root, root, -)
77d6311
%if "%{python_version}" >= "2.5"
Michael DeHaan 9089cc3
%{python_sitelib}/func*.egg-info
Michael DeHaan 6f1feb0
%endif
Steve Salevan c7341d8
Steve Salevan c7341d8
# Conditionally include funcd.
b0574d3
%if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
Steve Salevan b0f66b4
%{_unitdir}/funcd.service
Steve Salevan c7341d8
%else
Steve Salevan 51b27a3
%{_sysconfdir}/init.d/funcd
Steve Salevan 51b27a3
%endif
Steve Salevan c7341d8
Michael DeHaan 478efc9
%{_bindir}/funcd
Michael DeHaan 478efc9
%{_bindir}/func
Michael DeHaan 478efc9
%{_bindir}/func-inventory
Michael DeHaan 9089cc3
%{_bindir}/func-create-module
3118715
%{_bindir}/func-transmit
3118715
%{_bindir}/func-build-map
Seth Vidal f8328ba
%{_bindir}/func-command
Seth Vidal f8328ba
%{_bindir}/func-down-hosts
Seth Vidal f8328ba
%{_bindir}/func-find-user
Seth Vidal f8328ba
%{_bindir}/func-grep
Seth Vidal f8328ba
%{_bindir}/func-list-vms-per-host
Seth Vidal f8328ba
%{_bindir}/func-ps-compare
Seth Vidal f8328ba
%{_bindir}/func-whatsmyname
Seth Vidal f8328ba
%{_bindir}/func-yum
Steve Salevan 9e9afce
%{_bindir}/func-group
Michael DeHaan b3d31bd
#%{_bindir}/update-func
Seth Vidal e8c6773
Michael DeHaan 478efc9
%dir %{_sysconfdir}/%{name}
Michael DeHaan 478efc9
%dir %{_sysconfdir}/%{name}/minion-acl.d/
Michael DeHaan 478efc9
%dir /etc/func/modules/
Seth Vidal e8c6773
Michael DeHaan 478efc9
%config(noreplace) /etc/func/minion.conf
Michael DeHaan f56a432
%config(noreplace) /etc/func/async_methods.conf
285d9fc
%config(noreplace) /etc/func/overlord.conf
b0574d3
%config(noreplace) /etc/logrotate.d/func
255d8ee
%config(noreplace) /etc/func/modules/Test.conf
77d6311
%config(noreplace) /etc/func/modules/Bridge.conf
77d6311
%config(noreplace) /etc/func/modules/Vlan.conf
Seth Vidal e8c6773
%config /etc/func/version
Seth Vidal e8c6773
Michael DeHaan 478efc9
%dir %{python_sitelib}/func
Michael DeHaan 478efc9
%dir %{python_sitelib}/func/minion
b0574d3
%dir %{python_sitelib}/func/minion/facts
b0574d3
%dir %{python_sitelib}/func/minion/facts/modules
b0574d3
%dir %{python_sitelib}/func/minion/modules/iptables
Michael DeHaan 478efc9
%dir %{python_sitelib}/func/overlord
Michael DeHaan 478efc9
%dir %{python_sitelib}/func/overlord/cmd_modules
Seth Vidal e8c6773
%dir %{python_sitelib}/func/overlord/group
255d8ee
%dir %{python_sitelib}/func/overlord/modules
3118715
%dir %{python_sitelib}/func/yaml
Michael DeHaan 478efc9
%{python_sitelib}/func/minion/*.py*
Seth Vidal e8c6773
%{python_sitelib}/func/minion/facts/*.py*
Seth Vidal e8c6773
%{python_sitelib}/func/minion/facts/modules/*.py*
Michael DeHaan 478efc9
%{python_sitelib}/func/overlord/*.py*
Michael DeHaan 478efc9
%{python_sitelib}/func/overlord/cmd_modules/*.py*
Seth Vidal e8c6773
%{python_sitelib}/func/overlord/group/*.py*
Michael DeHaan 9089cc3
%{python_sitelib}/func/overlord/modules/*.py*
3118715
%{python_sitelib}/func/yaml/*.py*
Michael DeHaan 478efc9
%{python_sitelib}/func/*.py*
Michael DeHaan 478efc9
%dir %{python_sitelib}/func/minion/modules
Michael DeHaan 478efc9
%{python_sitelib}/func/minion/modules/*.py*
Michael DeHaan 9089cc3
Michael DeHaan 9089cc3
# we need to make the spec and setup.py find modules
Michael DeHaan 9089cc3
# in deep dirs automagically
255d8ee
255d8ee
%dir %{python_sitelib}/func/minion/modules/netapp
255d8ee
%dir %{python_sitelib}/func/minion/modules/netapp/vol
Michael DeHaan 9089cc3
%{python_sitelib}/func/minion/modules/*/*.py*
Michael DeHaan 9089cc3
%{python_sitelib}/func/minion/modules/*/*/*.py*
Michael DeHaan 9089cc3
Michael DeHaan 478efc9
%dir /var/log/func
b0574d3
%attr(0600,root,root) %config %ghost %verify(not md5 size mtime) /var/log/func/func.log
b0574d3
%attr(0600,root,root) %config %ghost %verify(not md5 size mtime) /var/log/func/audit.log
285d9fc
Michael DeHaan 9089cc3
%dir /var/lib/func
285d9fc
285d9fc
#%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/log/prelink/prelink.log
285d9fc
b0574d3
%{!?_licensedir:%global license %%doc}
b0574d3
%license LICENSE
b0574d3
%doc AUTHORS README CHANGES
Michael DeHaan 478efc9
%{_mandir}/man1/func.1.gz
Michael DeHaan 478efc9
%{_mandir}/man1/func-inventory.1.gz
Michael DeHaan 478efc9
%{_mandir}/man1/funcd.1.gz
3118715
%{_mandir}/man1/func-transmit.1.gz
285d9fc
%{_mandir}/man1/func-build-map.1.gz
285d9fc
%{_mandir}/man1/func-create-module.1.gz
Michael DeHaan 478efc9
b0574d3
%if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
b0574d3
%post
b0574d3
%systemd_post funcd.service
b0574d3
test -e /var/log/func/func.log || touch /var/log/func/func.log
b0574d3
test -e /var/log/func/audit.log || touch /var/log/func/audit.log
b0574d3
chmod 600 /var/log/func/func.log /var/log/func/audit.log
b0574d3
b0574d3
%preun
b0574d3
%systemd_preun funcd.service
b0574d3
b0574d3
%postun
b0574d3
%systemd_postun_with_restart funcd.service
b0574d3
%else
Michael DeHaan 478efc9
%post
Steve Salevan f82e75a
# systemd
Steve Salevan f82e75a
if [ -x /bin/systemctl ]; then
Steve Salevan f82e75a
  if [ $1 -eq 1 ] ; then 
Steve Salevan f82e75a
    # Initial installation 
Steve Salevan f82e75a
    /bin/systemctl daemon-reload >/dev/null 2>&1 || :
Steve Salevan f82e75a
  fi
Steve Salevan b5c8643
fi
Michael DeHaan 9089cc3
# for suse 
Steve Salevan 9e9afce
if [ -x /usr/lib/lsb/install_initd ]; then
Michael DeHaan 9089cc3
  /usr/lib/lsb/install_initd /etc/init.d/funcd
Michael DeHaan 9089cc3
# for red hat distros
Michael DeHaan 9089cc3
elif [ -x /sbin/chkconfig ]; then
Michael DeHaan 9089cc3
  /sbin/chkconfig --add funcd
Michael DeHaan 9089cc3
# or, the old fashioned way
Michael DeHaan 9089cc3
else
Michael DeHaan 9089cc3
   for i in 2 3 4 5; do
Michael DeHaan 9089cc3
        ln -sf /etc/init.d/funcd /etc/rc.d/rc${i}.d/S99funcd
Michael DeHaan 9089cc3
   done
Michael DeHaan 9089cc3
   for i in 1 6; do
b1acad3
        ln -sf /etc/init.d/funcd /etc/rc.d/rc${i}.d/k01funcd
Michael DeHaan 9089cc3
   done
Michael DeHaan 9089cc3
fi
b0574d3
test -e /var/log/func/func.log || touch /var/log/func/func.log
b0574d3
test -e /var/log/func/audit.log || touch /var/log/func/audit.log
b0574d3
chmod 600 /var/log/func/func.log /var/log/func/audit.log
Michael DeHaan b3d31bd
# upgrade old installs if needed
Michael DeHaan b3d31bd
#/usr/bin/update-func
Michael DeHaan b3d31bd
Michael DeHaan 478efc9
exit 0
Michael DeHaan 478efc9
Michael DeHaan 478efc9
%preun
Michael DeHaan 478efc9
if [ "$1" = 0 ] ; then
Michael DeHaan 9089cc3
  /etc/init.d/funcd stop  > /dev/null 2>&1
Steve Salevan f82e75a
  if [ -x /bin/systemctl ]; then
Steve Salevan f82e75a
    # Package removal, not upgrade
Steve Salevan f82e75a
    /bin/systemctl --no-reload disable funcd.service > /dev/null 2>&1 || :
Steve Salevan f82e75a
    /bin/systemctl stop funcd.service > /dev/null 2>&1 || :
Steve Salevan f82e75a
  elif [ -x /usr/lib/lsb/remove_initd ]; then
Michael DeHaan 9089cc3
    /usr/lib/lsb/remove_initd /etc/init.d/funcd
Michael DeHaan 9089cc3
  elif [ -x /sbin/chkconfig ]; then
Michael DeHaan 9089cc3
    /sbin/chkconfig --del funcd
Michael DeHaan 9089cc3
  else
Michael DeHaan 9089cc3
    rm -f /etc/rc.d/rc?.d/???funcd
Michael DeHaan 9089cc3
  fi
Michael DeHaan 478efc9
fi
Michael DeHaan 478efc9
Steve Salevan f82e75a
%postun
Steve Salevan f82e75a
if [ -x /bin/systemctl ]; then
Steve Salevan f82e75a
  /bin/systemctl daemon-reload >/dev/null 2>&1 || :
Steve Salevan f82e75a
  if [ $1 -ge 1 ] ; then
Steve Salevan f82e75a
      # Package upgrade, not uninstall
Steve Salevan f82e75a
      /bin/systemctl try-restart funcd.service >/dev/null 2>&1 || :
Steve Salevan f82e75a
  fi
Steve Salevan f82e75a
fi
Steve Salevan f82e75a
Steve Salevan f82e75a
%if 0%{?fedora} >= 16
Steve Salevan f82e75a
%triggerun -- func < 0.28-2
Steve Salevan f82e75a
# Save the current service runlevel info
Steve Salevan f82e75a
# User must manually run systemd-sysv-convert --apply funcd
Steve Salevan f82e75a
# to migrate them to systemd targets
Steve Salevan f82e75a
/usr/bin/systemd-sysv-convert --save funcd >/dev/null 2>&1 ||:
Steve Salevan f82e75a
Steve Salevan f82e75a
# Run these because the SysV package being removed won't do them
Steve Salevan f82e75a
/sbin/chkconfig --del funcd >/dev/null 2>&1 || :
Steve Salevan f82e75a
/bin/systemctl try-restart funcd.service >/dev/null 2>&1 || :
Steve Salevan f82e75a
%endif
b0574d3
%endif
Michael DeHaan 478efc9
Michael DeHaan b3d31bd
Michael DeHaan 478efc9
%changelog
bb735ee
* Wed Feb 14 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.30-13
bb735ee
- Update Python 2 dependency declarations to new packaging standards
bb735ee
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
bb735ee
b636759
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-12
b636759
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b636759
2a30ff7
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-11
2a30ff7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2a30ff7
b47c387
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-10
b47c387
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b47c387
1993aeb
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-9
1993aeb
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
1993aeb
b0574d3
* Fri Apr 22 2016 Robert Scheck <robert@fedoraproject.org> - 0.30-8
b0574d3
- Fix daemon restarts via logrotate for initscripts and systemd
b0574d3
- Avoid creating log files ending with .rpmnew or .rpmsave (#695428)
b0574d3
- Own all directories for func python modules (#894534)
b0574d3
- Do not try to run SysV initscripts on Fedora >= 18 (#915092)
b0574d3
- Add macro conditionals for Red Hat Enterprise Linux 7 (#1164784)
b0574d3
- Introduce new systemd-rpm macros in func spec file (#850055)
b0574d3
46c0e83
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-7
46c0e83
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
46c0e83
b025654
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-6
b025654
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b025654
162f5ff
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 0.30-5
162f5ff
- Replace python-setuptools-devel BR with python-setuptools
162f5ff
c0780b2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-4
c0780b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c0780b2
04fd258
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-3
04fd258
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
04fd258
695fe16
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-2
695fe16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
695fe16
Steve Salevan 9e9afce
* Mon Oct 15 2012 Steve Salevan <ssalevan at fedoraproject.org> - 0.30-1
Steve Salevan 9e9afce
- v0.30 release:
Steve Salevan 9e9afce
- Added copyfile improvements
Steve Salevan 9e9afce
- Improvements to all func-* scripts
Steve Salevan 9e9afce
- Delegation improvements
Steve Salevan 9e9afce
- Stability improvements
Steve Salevan 9e9afce
- Removing dependency on smolt
Steve Salevan 9e9afce
Steve Salevan 2ac32cb
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.28-4
Steve Salevan 2ac32cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Steve Salevan 2ac32cb
Steve Salevan 2ac32cb
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.28-3
Steve Salevan 2ac32cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Steve Salevan 2ac32cb
Steve Salevan 2ac32cb
* Fri Sep  9 2011 Tom Callaway <spot@fedoraproject.org> - 0.28-2
Steve Salevan 2ac32cb
- convert to systemd
Steve Salevan 2ac32cb
Steve Salevan 9e9afce
* Thu Mar 31 2011 Seth Vidal <skvidal at fedoraproject.org> - 0.28-1
Steve Salevan 9e9afce
- 0.28
Steve Salevan 9e9afce
Steve Salevan 9e9afce
* Fri Oct  8 2010 Seth Vidal <skvidal at fedoraproject.org> - 0.27-2
Steve Salevan 9e9afce
- add func-commands and func-yum
2aaacb6
Seth Vidal e8c6773
* Wed Aug 25 2010 Seth Vidal <skvidal at fedoraproject.org> - 0.27-1
Seth Vidal e8c6773
- bump to 0.27
Seth Vidal e8c6773
Seth Vidal e8c6773
* Wed Sep 9 2009 Adrian Likins <alikins@redhat.com> - 0.26-1
Seth Vidal e8c6773
- require smolt (should be there on most stuff we support, and
Seth Vidal e8c6773
  hardware module is lame without it)
Seth Vidal e8c6773
Seth Vidal e8c6773
* Thu Aug 26 2009 Adrian Likins <alikins@redhat.com> - 0.26-1
Seth Vidal e8c6773
- rev
Seth Vidal e8c6773
Seth Vidal e8c6773
* Thu Aug 20 2009 Adrian Likins <alikins@redhat.com> - 0.25-2
Seth Vidal e8c6773
- add func-group
a723b43
Seth Vidal e8c6773
* Thu Jun 11 2009 Adrian Likins <alikins@redhat.com> - 0.25-1
Seth Vidal e8c6773
- add /etc/func/version
8bdc307
285d9fc
* Wed Jun 10 2009 Adrian Likins <alikins@redhat.com> - 0.25-1
285d9fc
- add CHANGES to spec file
285d9fc
285d9fc
* Wed May 27 2009 Adrian Likins <alikins@redhat.com> - 0.25-1
285d9fc
- add /var/log/func/*.log files to spec
285d9fc
- add a post section to chmod any log files with bogus perms
285d9fc
  
285d9fc
285d9fc
* Thu Apr 16 2009 Adrian Likins <alikins@redhat.com> - 0.24-5
285d9fc
- add an overlord.conf file
05a0336
77d6311
* Wed Feb 18 2009 Adrian Likins <alikins@redhat.com> - 0.24-5
77d6311
- remove version file
77d6311
77d6311
* Mon Jan 19 2009 Adrian Likins <alikins@redhat.com> - 0.24.4
77d6311
- make inclusion of egginfo dependant on having python >= 2.5
77d6311
- remove need for patch on rhel3+python2.4 cases (distutils should
77d6311
  do all the /usr/bin/python renaming now)
77d6311
- minor reformatting changes
77d6311
77d6311
* Tue Jan 06 2009 Greg Swift <gregswift@gmail.com> - 0.24-3
77d6311
- Fixed spec because it was only building in rhel3
77d6311
77d6311
* Wed Dec 31 2008 Greg Swift <gregswift@gmail.com> - 0.24-2
77d6311
- Patched SPEC to build on rhel3 with python2.3
77d6311
- Added Patch0 to handle python2.3 if on rhel3
77d6311
255d8ee
* Wed Dec 17 2008 Adrian Likins <alikins@redhat.com> - 0.24-1
255d8ee
- require certmaster 0.24 
255d8ee
255d8ee
* Mon Dec 8 2008 Adrian Likins <alikins@redhat.com> - 0.24-1
255d8ee
- claim ownership of all dirs bz#474644
255d8ee
- add dep on logrotate
3118715
255d8ee
* Fri Jul 18 2008 Adrian Likins <alikins@redhat.com> - 0.23-2
3118715
- remove requirement for pyyaml, add python-simplejson
3118715
3118715
* Fri Jul 11 2008 Michael DeHaan <mdehaan@redhat.com> - 0.23-1
3118715
- (for ssalevan) adding in mapping/delegation tools
3118715
3118715
* Mon Jul 07 2008 Michael DeHaan <mdehaan@redhat.com> - 0.22-1
3118715
- packaged func-transmit script
3118715
Michael DeHaan f56a432
* Wed Jul 02 2008 Michael DeHaan <mdehaan@redhat.com> - 0.21-1
Michael DeHaan f56a432
- new release, upstream changes
Michael DeHaan f56a432
Michael DeHaan f56a432
* Mon Jun 30 2008 Michael DeHaan <mdehaan@redhat.com> - 0.20-1
Michael DeHaan f56a432
- new release, upstream changes
Michael DeHaan f56a432
b1acad3
* Fri Jun 28 2008 Adrian Likins <alikins@redhat.com> - 0.18-2
b1acad3
- fix fedora bug #441283 - typo in postinstall scriptlet
b1acad3
  (the init.d symlinks for runlevels 1 and 6 were created wrong)
b1acad3
3118715
Michael DeHaan b3d31bd
* Mon Mar 03 2008 Adrian Likins <alikins@redhat.com> - 0.18-1
Michael DeHaan b3d31bd
- split off certmaster
Michael DeHaan b3d31bd
Michael DeHaan 8365293
* Fri Feb 8 2008 Michael DeHaan <mdehaan@redhat.com> - 0.17-1
Michael DeHaan 8365293
- bugfix release
Michael DeHaan 8365293
Michael DeHaan 9089cc3
* Mon Feb 4 2008 Michael DeHaan <mdehaan@redhat.com> - 0.16-1
Michael DeHaan 9089cc3
- bump version for release
Michael DeHaan 9089cc3
- fixing versions in previous changelogs
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Mon Feb 4 2008 Adrian Likins <alikins@redhat.com> - 0.15-1
Michael DeHaan 9089cc3
- catch some deeper minion modules as well
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Sun Jan 13 2008 Steve 'Ashcrow' Milner <smilner@redhat.como> - 0.14-6
Michael DeHaan 9089cc3
- Added in func-create-module for scripts.
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Tue Dec 18 2007 Adrian Likins <alikins@redhat.com> - 0.14-5
Michael DeHaan 9089cc3
- add /var/lib/ dirs to spec file
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Thu Dec 13 2007 Eli Criffield <elicriffield@gmail.com> - 0.14-4
Michael DeHaan 9089cc3
- changes for suse integration 
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Tue Dec 11 2007 Michael DeHaan <mdehaan@redhat.com> - 0.14-2
Michael DeHaan 9089cc3
- python egg section added for F9 and later
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Tue Dec 11 2007 Michael DeHaan <mdehaan@redhat.com> - 0.14-1
Michael DeHaan 9089cc3
- new release to mirrors
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Fri Oct 26 2007 Michael DeHaan <mdehaan@redhat.com> - 0.13-3
Michael DeHaan 9089cc3
- Misc fixes per Fedora package-review
Michael DeHaan 478efc9
Michael DeHaan 9089cc3
* Wed Oct 24 2007 Michael DeHaan <mdehaan@redhat.com> - 0.13-2
Michael DeHaan 9089cc3
- packaged func-inventory and associated manpage
Michael DeHaan 9089cc3
- release bump for Fedora submission