From: Ryota Ozaki Date: Sun, 17 Mar 2013 14:21:31 +0000 (+0900) Subject: Use $localstatedir/log/lxc for default log path X-Git-Tag: lxc-0.9.0~1^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89d556d83a2eb9c6bbe424a7bb0556f59bb137dc;p=thirdparty%2Flxc.git Use $localstatedir/log/lxc for default log path When we install lxc by manual (configure; make; make install), all files are installed under /usr/local/. Configuration files and setting files of containers are stored under /usr/local/ too, however, only log files are stored under /var/log/ not /usr/local/var/log. This patch changes the default log path to $localstatedir/log/lxc (by default $localstatedir is /usr/local/var) where is an ordinary directory, which is probably expected and unsurprising. Signed-off-by: Ryota Ozaki Acked-by: Serge E. Hallyn --- diff --git a/configure.ac b/configure.ac index 0eae6559b..dbc237910 100644 --- a/configure.ac +++ b/configure.ac @@ -194,7 +194,7 @@ AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$use_configpath_logs" = "yes"]) if test "$use_configpath_logs" = "yes"; then default_log_path="${with_config_path}" else - default_log_path="/var/log/lxc" + default_log_path="${localstatedir}/log/lxc" fi AC_ARG_WITH([log-path],