diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-02-23 08:46:46 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-02-23 10:26:22 -0500 |
commit | f8469b71247b5a41cfdf0f54c25ceda1552e0ee9 (patch) | |
tree | e61b1ab3b30174ea76c05120acfbe02640377b0e /server/infopipe/org.freeipa.sssd.infopipe.conf | |
parent | 70901a109f546b0d5adcbb01430649cddf607e35 (diff) | |
download | sssd-f8469b71247b5a41cfdf0f54c25ceda1552e0ee9.tar.gz sssd-f8469b71247b5a41cfdf0f54c25ceda1552e0ee9.tar.bz2 sssd-f8469b71247b5a41cfdf0f54c25ceda1552e0ee9.zip |
Attach the InfoPipe to the D-BUS system bus. InfoPipe is now capable of listening for requests to org.freeipa.sssd.infopipe
I made the sbus_add_connection function public so that I could
use it for system bus connections.
Adding initial framework for the InfoPipe
Updating sysdb tests for the refactored sysdb methods.
Diffstat (limited to 'server/infopipe/org.freeipa.sssd.infopipe.conf')
-rw-r--r-- | server/infopipe/org.freeipa.sssd.infopipe.conf | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/server/infopipe/org.freeipa.sssd.infopipe.conf b/server/infopipe/org.freeipa.sssd.infopipe.conf index e33eb30c..b9ca5588 100644 --- a/server/infopipe/org.freeipa.sssd.infopipe.conf +++ b/server/infopipe/org.freeipa.sssd.infopipe.conf @@ -8,14 +8,15 @@ <!-- Only root can own the SSSD service --> <policy user="root"> - <allow own="org.freeipa.sssd.infopipe"/> + <allow own="org.freeipa.sssd.infopipe1"/> + <allow send_interface="org.freeipa.sssd.infopipe1"/> </policy> - <!-- Allow anyone to invoke methods on the infopipe - This is temporary. Real rules will be established - later --> + <!-- Allow all methods on the interface --> + <!-- Right now, this will be handled by a limited ACL + within the InfoPipe Daemon. --> <policy context="default"> - <allow send_interface="org.freeipa.sssd.infopipe"/> + <allow send_interface="org.freeipa.sssd.infopipe1"/> </policy> </busconfig> |