|
From: <abe...@us...> - 2016-12-15 18:10:09
|
Revision: 8037
http://sourceforge.net/p/astlinux/code/8037
Author: abelbeck
Date: 2016-12-15 18:10:07 +0000 (Thu, 15 Dec 2016)
Log Message:
-----------
web interface, System tab, add View System Files: [ IPsec strongSwan log ]
Modified Paths:
--------------
branches/1.0/package/webinterface/altweb/admin/system.php
Modified: branches/1.0/package/webinterface/altweb/admin/system.php
===================================================================
--- branches/1.0/package/webinterface/altweb/admin/system.php 2016-12-15 17:48:42 UTC (rev 8036)
+++ branches/1.0/package/webinterface/altweb/admin/system.php 2016-12-15 18:10:07 UTC (rev 8037)
@@ -611,6 +611,9 @@
if (is_file($file = '/var/log/openvpnclient.log')) {
putHtml('<option value="'.$file.'">OpenVPN Client log</option>');
}
+ if (is_file($file = '/var/log/charon.log')) {
+ putHtml('<option value="'.$file.'">IPsec strongSwan log</option>');
+ }
if (is_file($file = '/var/log/ups.log')) {
putHtml('<option value="'.$file.'">UPS Daemon Startup log</option>');
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|