diff options
author | Jan Cholasta <jcholast@redhat.com> | 2012-02-03 22:41:30 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-02-07 00:26:57 +0100 |
commit | 1a7d1977037864e52858058777af8ff8401547dd (patch) | |
tree | 414005d5758301a810cd8240ab533eb09a81851e /Makefile.am | |
parent | 74505b09d056883741e90cac45838c844365cae5 (diff) | |
download | sssd-1a7d1977037864e52858058777af8ff8401547dd.tar.gz sssd-1a7d1977037864e52858058777af8ff8401547dd.tar.bz2 sssd-1a7d1977037864e52858058777af8ff8401547dd.zip |
IPA: Add host info handler
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index e0ad0dcb..edf583cc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -338,6 +338,7 @@ dist_noinst_HEADERS = \ src/db/sysdb_selinux.h \ src/db/sysdb_private.h \ src/db/sysdb_services.h \ + src/db/sysdb_ssh.h \ src/confdb/confdb.h \ src/confdb/confdb_private.h \ src/confdb/confdb_setup.h \ @@ -370,6 +371,7 @@ dist_noinst_HEADERS = \ src/providers/ipa/ipa_auth.h \ src/providers/ipa/ipa_dyndns.h \ src/providers/ipa/ipa_id.h \ + src/providers/ipa/ipa_hostid.h \ src/providers/proxy/proxy.h \ src/tools/tools_util.h \ src/tools/sss_sync_ops.h \ @@ -434,6 +436,9 @@ libsss_util_la_LIBADD = \ if BUILD_SUDO libsss_util_la_SOURCES += src/db/sysdb_sudo.c endif +if BUILD_SSH + libsss_util_la_SOURCES += src/db/sysdb_ssh.c +endif lib_LTLIBRARIES = libipa_hbac.la dist_pkgconfig_DATA += src/providers/ipa/ipa_hbac.pc @@ -1143,6 +1148,9 @@ if BUILD_AUTOFS libsss_ipa_la_SOURCES += src/providers/ldap/sdap_autofs.c \ src/providers/ldap/sdap_async_autofs.c endif +if BUILD_SSH +libsss_ipa_la_SOURCES += src/providers/ipa/ipa_hostid.c +endif krb5_child_SOURCES = \ |