summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/monitor/monitor.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c
index 09f530d26..72a8b7c4a 100644
--- a/src/monitor/monitor.c
+++ b/src/monitor/monitor.c
@@ -84,6 +84,11 @@
*/
#define KRB5_RCACHE_DIR_DISABLE "__LIBKRB5_DEFAULTS__"
+/* Warning messages */
+#define CONF_FILE_PERM_ERROR_MSG "Cannot read config file %s. Please check "\
+ "if permissions are 0600 and the file is "\
+ "owned by root.root."
+
int cmdline_debug_level;
int cmdline_debug_timestamps;
int cmdline_debug_microseconds;
@@ -2798,7 +2803,8 @@ int main(int argc, const char *argv[])
case EPERM:
case EACCES:
DEBUG(SSSDBG_CRIT_FAILURE,
- ("Insufficient permissions to read configuration file.\n"));
+ (CONF_FILE_PERM_ERROR_MSG, config_file));
+ sss_log(SSS_LOG_ALERT, CONF_FILE_PERM_ERROR_MSG, config_file);
break;
default:
DEBUG(SSSDBG_CRIT_FAILURE,