summaryrefslogtreecommitdiffstats
path: root/server/server.mk
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-02-24 12:02:05 -0500
committerSimo Sorce <idra@samba.org>2009-02-24 13:47:47 -0500
commitc14486feb47672a3562989ddb00653f58357e368 (patch)
tree92fe193ae916c95ae95654a55a7bdce45587aeac /server/server.mk
parent795e12d8315c4f7f0d4b2abb77fb49e0417e362a (diff)
downloadsssd-c14486feb47672a3562989ddb00653f58357e368.tar.gz
sssd-c14486feb47672a3562989ddb00653f58357e368.tar.xz
sssd-c14486feb47672a3562989ddb00653f58357e368.zip
Adding support for CheckPermissions to InfoPipe.
CheckPermissions will currently return unrestricted access to the root user, and no access to any other user. Once we decide on an ACL mechanism, this will be easy to change. I have also added very basic tests for the Introspect and CheckPermissions methods.
Diffstat (limited to 'server/server.mk')
-rw-r--r--server/server.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/server.mk b/server/server.mk
index b37be9fae..744dc243d 100644
--- a/server/server.mk
+++ b/server/server.mk
@@ -4,6 +4,7 @@ UTIL_OBJ = \
util/server.o \
util/memory.o \
util/btreemap.o \
+ util/usertools.o \
monitor/monitor_sbus.o \
providers/dp_sbus.o \
sbus/sssd_dbus_common.o \
@@ -47,6 +48,9 @@ MEMBEROF_OBJ = \
SYSDB_TEST_OBJ = \
tests/sysdb-tests.o
+INFP_TEST_OBJ = \
+ tests/infopipe-tests.o
+
sbin/sssd: $(SERVER_OBJ) $(UTIL_OBJ)
$(CC) -o sbin/sssd $(SERVER_OBJ) $(UTIL_OBJ) $(LDFLAGS) $(LIBS)
@@ -76,3 +80,6 @@ lib/$(MEMBEROF_SOBASE): $(MEMBEROF_OBJ)
#Tests
tests/sysdb-tests: $(SYSDB_TEST_OBJ) $(UTIL_OBJ)
$(CC) -o tests/sysdb-tests $(SYSDB_TEST_OBJ) $(UTIL_OBJ) $(LDFLAGS) $(LIBS) $(CHECK_LIBS)
+
+tests/infopipe-tests: $(INFP_TEST_OBJ) $(UTIL_OBJ)
+ $(CC) -o tests/infopipe-tests $(INFP_TEST_OBJ) $(UTIL_OBJ) $(LDFLAGS) $(LIBS) $(CHECK_LIBS)