![hauke](/assets/img/avatar_default.png)
Update radsecproxy to version 1.6.5 and convert the init script to use procd, and start later during boot to ensure name service is operational. Introduces a small patch to radsecproxy which prevents it from forcing log output to stderr when run in the foreground, thus making it possible to simply run it in this mode for procd management. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40635 3c298f89-4303-0410-b956-a3cf2f4a3e73
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
diff --git a/radsecproxy.c b/radsecproxy.c
|
|
index 563c4a8..9fa076d 100644
|
|
--- a/radsecproxy.c
|
|
+++ b/radsecproxy.c
|
|
@@ -3382,18 +3382,16 @@ int radsecproxy_main(int argc, char **argv) {
|
|
options.loglevel = loglevel;
|
|
else if (options.loglevel)
|
|
debug_set_level(options.loglevel);
|
|
- if (!foreground) {
|
|
- debug_set_destination(options.logdestination
|
|
- ? options.logdestination
|
|
- : "x-syslog:///", LOG_TYPE_DEBUG);
|
|
+ debug_set_destination(options.logdestination
|
|
+ ? options.logdestination
|
|
+ : "x-syslog:///", LOG_TYPE_DEBUG);
|
|
#if defined(WANT_FTICKS)
|
|
- if (options.ftickssyslogfacility) {
|
|
- debug_set_destination(options.ftickssyslogfacility,
|
|
- LOG_TYPE_FTICKS);
|
|
- free(options.ftickssyslogfacility);
|
|
- }
|
|
-#endif
|
|
+ if (options.ftickssyslogfacility) {
|
|
+ debug_set_destination(options.ftickssyslogfacility,
|
|
+ LOG_TYPE_FTICKS);
|
|
+ free(options.ftickssyslogfacility);
|
|
}
|
|
+#endif
|
|
free(options.logdestination);
|
|
|
|
if (!list_first(clconfs))
|