|
From: <wow...@us...> - 2015-10-14 05:58:34
|
Revision: 590
http://sourceforge.net/p/ptpd/code/590
Author: wowczarek
Date: 2015-10-14 05:58:31 +0000 (Wed, 14 Oct 2015)
Log Message:
-----------
- User variable fix in built-in templates
Modified Paths:
--------------
trunk/src/dep/configdefaults.c
Modified: trunk/src/dep/configdefaults.c
===================================================================
--- trunk/src/dep/configdefaults.c 2015-10-13 21:23:29 UTC (rev 589)
+++ trunk/src/dep/configdefaults.c 2015-10-14 05:58:31 UTC (rev 590)
@@ -114,18 +114,17 @@
{ "full-logging-instance", {
{"global:log_status", "y"},
- {"global:status_file", "/var/run/ptpd2.%instance%.status"},
+ {"global:status_file", "@rundir@/ptpd2.@instance@.status"},
{"global:statistics_log_interval", "1"},
- {"global:lock_file", "/var/run/ptpd2.%instance%.pid"},
+ {"global:lock_file", "@rundir@/ptpd2.@instance@.pid"},
{"global:log_statistics", "y"},
- {"global:statistics_file", "/var/log/ptpd2.%instance%.statistics"},
+ {"global:statistics_file", "@logdir@/ptpd2.@instance@.statistics"},
// {"global:statistics_file_truncate", "n"},
- {"global:log_file", "/var/log/ptpd2.%instance%.log"},
+ {"global:log_file", "@logdir@/ptpd2.@instance@.log"},
{"global:statistics_timestamp_format", "both"},
{NULL}}
},
-
{NULL}
};
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|