Update to 0.34
- open a connection to the bus for every service we're serving, instead of using just one for the lot of them, so that we can tell which service a client was attempting to contact if it sends a message to our unique connection address instead of a well-known name, like dbus-python does - tweak the logic for guessing which interface name is right when a request doesn't include one, so that it has a better chance of finding the right one - increase the initial size of the buffer that we pass to getpwnam_r in the pam_oddjob_mkhomedir module (#1198812)
This commit is contained in:
parent
c55b118103
commit
c5b2f50f09
2
.gitignore
vendored
2
.gitignore
vendored
@ -15,3 +15,5 @@ oddjob-0.30.1.tar.gz
|
||||
/oddjob-0.32.tar.gz.sig
|
||||
/oddjob-0.33.tar.gz
|
||||
/oddjob-0.33.tar.gz.sig
|
||||
/oddjob-0.34.tar.gz
|
||||
/oddjob-0.34.tar.gz.sig
|
||||
|
||||
24
oddjob.spec
24
oddjob.spec
@ -1,5 +1,10 @@
|
||||
%global build_sample_subpackage 0
|
||||
|
||||
%if 0%{?fedora} > 21 || 0%{?rhel} > 7
|
||||
%global dbus_send /usr/bin/dbus-send
|
||||
%else
|
||||
%global dbus_send /bin/dbus-send
|
||||
%endif
|
||||
|
||||
%if 0%{?fedora} > 18 || 0%{?rhel} > 6
|
||||
%global systemd 1
|
||||
@ -16,10 +21,10 @@
|
||||
%endif
|
||||
|
||||
Name: oddjob
|
||||
Version: 0.33
|
||||
Release: 5%{?dist}
|
||||
Version: 0.34
|
||||
Release: 1%{?dist}
|
||||
Source0: http://fedorahosted.org/released/oddjob/oddjob-%{version}.tar.gz
|
||||
Source1: http://fedorahosted.org/released/oddjob/oddjob-%{version}.tar.gz.sig
|
||||
#Source1: http://fedorahosted.org/released/oddjob/oddjob-%{version}.tar.gz.sig
|
||||
Summary: A D-Bus service which runs odd jobs on behalf of client applications
|
||||
License: BSD
|
||||
Group: System Environment/Daemons
|
||||
@ -250,9 +255,22 @@ fi
|
||||
exit 0
|
||||
|
||||
%changelog
|
||||
* Wed Jun 24 2015 Nalin Dahyabhai <nalin@redhat.com> - 0.34-1
|
||||
- open a connection to the bus for every service we're serving, instead of
|
||||
using just one for the lot of them, so that we can tell which service a
|
||||
client was attempting to contact if it sends a message to our unique
|
||||
connection address instead of a well-known name, like dbus-python does
|
||||
- tweak the logic for guessing which interface name is right when a request
|
||||
doesn't include one, so that it has a better chance of finding the right one
|
||||
- increase the initial size of the buffer that we pass to getpwnam_r in the
|
||||
pam_oddjob_mkhomedir module (#1198812)
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.33-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Dec 04 2014 Nalin Dahyabhai <nalin@redhat.com>
|
||||
- make that last change dependent on which release we're building for
|
||||
|
||||
* Thu Dec 04 2014 David King <amigadave@amigadave.com> - 0.33-4
|
||||
- Update dbus-send dependency for new dbus (#1170584)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user