From 8297683605c56efc96defbbb622ff8af8e05bb91 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 21 Mar 2016 11:40:42 +0100 Subject: [PATCH] main: create NMSTATEDIR with permissions 700 "NMSTATEDIR" is "nmstatedir" is "'${localstatedir}'/lib/$PACKAGE" is usually "/var/lib/NetworkManager". The "install-data-hook" in "src/Makefile.am" properly installs the directory with permissions 700. When creating the directory at startup, we must also use those permissions. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index bf007008b1..bf1224dfd6 100644 --- a/src/main.c +++ b/src/main.c @@ -310,7 +310,7 @@ main (int argc, char *argv[]) nm_main_utils_ensure_not_running_pidfile (global_opt.pidfile); /* Ensure state directory exists */ - if (g_mkdir_with_parents (NMSTATEDIR, 0755) != 0) { + if (g_mkdir_with_parents (NMSTATEDIR, 0700) != 0) { fprintf (stderr, "Cannot create '%s': %s", NMSTATEDIR, strerror (errno)); exit (1); }