mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Fix display of active openvpn config
This commit is contained in:
parent
5f7df3accb
commit
e62bb9c04e
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,10 @@
|
||||||
<br><small class="text-muted"><?php echo _("Activating a configuraton will restart the <code>openvpn-client</code> service.") ?></small>
|
<br><small class="text-muted"><?php echo _("Activating a configuraton will restart the <code>openvpn-client</code> service.") ?></small>
|
||||||
</p>
|
</p>
|
||||||
<div class="openvpn-configs js-openvpn-configs-container">
|
<div class="openvpn-configs js-openvpn-configs-container">
|
||||||
|
<?php
|
||||||
|
exec("readlink ".RASPI_OPENVPN_CLIENT_CONFIG." | xargs basename", $ret);
|
||||||
|
$conf_default = empty($ret) ? "none" : $ret[0];
|
||||||
|
?>
|
||||||
<?php foreach ($clients as $client) :
|
<?php foreach ($clients as $client) :
|
||||||
if ($client == "client.conf") {
|
if ($client == "client.conf") {
|
||||||
$label = file_get_meta(RASPI_OPENVPN_CLIENT_CONFIG,'#\sfilename\s(.*)');
|
$label = file_get_meta(RASPI_OPENVPN_CLIENT_CONFIG,'#\sfilename\s(.*)');
|
||||||
|
|
Loading…
Reference in a new issue