summaryrefslogtreecommitdiff
path: root/contrib/sssd.spec.in
AgeCommit message (Collapse)AuthorFilesLines
2012-11-22Use systemd by default on Fedora 16+Jan Cholasta1-2/+60
https://fedorahosted.org/sssd/ticket/1437
2012-10-18RPMS: Move sss_cache tool to main packageStephen Gallagher1-3/+6
https://fedorahosted.org/sssd/ticket/1481
2012-10-12Remove libsss_sudo.pc and move libsss_sudo.so to libsss_sudoJakub Hrozek1-3/+1
2012-10-12Couple of specfile fixesJakub Hrozek1-3/+7
2012-09-24RPM: Create ghost files during installJakub Hrozek1-0/+5
2012-09-24autofs, sudo, ssh and PAC are not experimental anymoreJakub Hrozek1-14/+0
2012-09-24Mark the fastcache files in the spec file as %ghostJakub Hrozek1-0/+2
https://fedorahosted.org/sssd/ticket/1487
2012-09-17rpm: put localized sssd_krb5_locator_plugin manpages into clientPavel Březina1-1/+5
Localized sssd_krb5_locator_plugin manpages were added into main sssd package instead of client. https://fedorahosted.org/sssd/ticket/1394
2012-09-10RPM: BuildRequire selinux-policy-targetedJakub Hrozek1-0/+1
selinux-policy-targeted contains the /etc/selinux/targeted/logins directory that is checked during build time to determine if the platform supports SELinux user logins.
2012-09-07libsss_sudo should have a versioned dependency on SSSDJakub Hrozek1-0/+1
https://fedorahosted.org/sssd/ticket/1509
2012-08-29RPM: Always include the patch fileJakub Hrozek1-2/+0
2012-08-28RPM: Switch the default ccache locationJakub Hrozek1-1/+7
https://fedorahosted.org/sssd/ticket/1500
2012-08-15Add python bindings for murmurhash3Sumit Bose1-0/+1
2012-08-01Create a domain-realm mapping for krb5.conf to be includedJakub Hrozek1-0/+1
When new subdomains are discovered, the SSSD creates a file that includes the domain-realm mappings. This file can in turn be included in the krb5.conf using the includedir directive, such as: includedir /var/lib/sss/pubconf/realm_mappings
2012-08-01First-boot sss_seed toolNick Guay1-0/+2
2012-08-01Require and call ldconfig from subpackages if appropriateVille Skyttä1-5/+22
The SSSD subpackages were not calling ldconfig even though they contain shared libraries.
2012-07-30manpage: sssd-sudo - documents how sudo works with sssdPavel Březina1-0/+1
https://fedorahosted.org/sssd/ticket/1418
2012-07-16Add missing "%" to specfileJakub Hrozek1-1/+1
2012-07-13RPM: Own several directoriesJakub Hrozek1-0/+4
2012-07-06AD: Add manpages and SSSDConfig entriesStephen Gallagher1-0/+1
2012-07-06AD: Add AD provider to the spec fileStephen Gallagher1-0/+1
2012-06-25BUILD: Change default unicode library to glib2Stephen Gallagher1-8/+2
This patch also removes the references to 'cvs' and 'nscd' from BUILD.txt, as they are no longer necessary.
2012-06-21Try to build PAC responder only if all dependencies are availableSumit Bose1-0/+10
2012-06-21PAC responder: support in spec fileSumit Bose1-0/+7
2012-06-14Make krb5_ccname_template and krb5_ccachedir configurableJakub Hrozek1-0/+5
2012-05-31SSSDConfig: Make SSSDConfig a packageStephen Gallagher1-1/+1
We were polluting the primary Python space with several dependencies. We will now install them their own directory/module.
2012-05-15RPM: Allow running 'make rpms' on RHEL 5 machinesStephen Gallagher1-5/+7
Our previous detection for this was flawed, because the %{rhel} macro did not exist on the version of RPM shipped with RHEL 5, but it worked when building for RHEL 5 through mock. This new patch relies on grepping /etc/redhat-release for the version information. https://fedorahosted.org/sssd/ticket/1206
2012-05-03Fix typo in spec fileSumit Bose1-1/+1
2012-04-20Install and uninstall all documentationPavel Březina1-3/+3
Every directory listed in SSSD_DOCS in Makefile.am will be installed as documentation.
2012-03-26Add idmap librarySumit Bose1-0/+35
2012-03-19nsssrv: shared memory cache server initializationSimo Sorce1-0/+3
2012-03-08Build experimental features by default in RPMsStephen Gallagher1-0/+2
2012-03-08Make RPM spec more explicitStephen Gallagher1-2/+20
It will be easier to catch errors at build-time
2012-03-08Prune python provides correctlyStephen Gallagher1-5/+8
2012-02-27Eliminate build-time requirement for nscdStephen Gallagher1-1/+0
We will now use the autodetected location if available, or else fall back to a value provided by --with-nscd in configure and finally resort to a hard-coded default of /usr/sbin/nscd.
2012-02-15Fix missing %endif in sssd.spec.inStephen Gallagher1-0/+1
2012-02-15Move sss_ssh_* binaries to the main 'sssd' packageStephen Gallagher1-6/+7
The sssd-client subpackage is multilib, so it cannot contain conflicting /usr/bin executables.
2012-02-14SSH: Build man pages conditionallyJan Cholasta1-1/+1
https://fedorahosted.org/sssd/ticket/1175
2012-02-07Make sudo installation path configurable, install into libdir by defaultJakub Hrozek1-2/+2
2012-02-07SSH: OpenSSH known_hosts clientJan Cholasta1-0/+2
2012-02-07SSH: OpenSSH authorized_keys clientJan Cholasta1-0/+4
2012-02-05AUTOFS: a client libraryJakub Hrozek1-0/+13
This is the library the autofs client is using. automounter dlopen()s the library so there is no header file, no pkgconfig file and the library is in the libsss_autofs package, not in -devel. The library provides the following interface: * _sss_setautomntent() - select the map for processing * _sss_getautomntent_r() - iterates through key/value pairs in the selected map. The key is usually the mount point, the value is mount information (server:/export) * _sss_getautomntbyname_r() - returns value for a specific key. * _sss_endautomntent() deselect a map, clean up
2012-01-30SUDO: Provide documentation for the SUDO APIJakub Hrozek1-0/+6
2012-01-30SSSDConfigAPI: Move sssd.api.* to /usr/share/sssdStephen Gallagher1-6/+3
https://fedorahosted.org/sssd/ticket/1158
2012-01-17Add a new Makefile target to build RPMs with the experimental flagJakub Hrozek1-1/+37
2011-12-12Update spec file to build with Glib on RHEL 5Stephen Gallagher1-2/+9
2011-09-15Fix typo in specfileStephen Gallagher1-2/+2
2011-09-15Do not build documentation on RHEL 5Stephen Gallagher1-1/+17
RHEL 5 has a very old version of doxygen that does not search the correct locations for documentation.
2011-09-08Add libipa_hbac documentation to the -devel packageStephen Gallagher1-1/+5
2011-09-06Remove all libtool .la files from RPMStephen Gallagher1-13/+2