From 5050b2d98f845311a2fb73707bae19904a2900da Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 28 Mar 2016 15:22:35 -0400 Subject: Monitor: Add mode to generate confdb only With this mode we can add socket activated services and have systemd pre exec sssd to genrate the configuration file w/o starting the whole sssd if not necessary. Resolves: https://fedorahosted.org/sssd/ticket/XXXX --- src/util/util.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/util/util.h') diff --git a/src/util/util.h b/src/util/util.h index dd394514..f37047a9 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -83,6 +83,7 @@ #define FLAGS_DAEMON 0x0001 #define FLAGS_INTERACTIVE 0x0002 #define FLAGS_PID_FILE 0x0004 +#define FLAGS_GEN_CONF 0x0008 #ifndef talloc_zfree #define talloc_zfree(ptr) do { talloc_free(discard_const(ptr)); ptr = NULL; } while(0) -- cgit