mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Merge pull request #1612 from RaspAP/fix/wg-status
Update method to determine wg-quick state
This commit is contained in:
commit
ed008730e6
1 changed files with 3 additions and 3 deletions
|
@ -64,9 +64,9 @@ function DisplayWireGuardConfig()
|
|||
}
|
||||
|
||||
// fetch service status
|
||||
exec('pidof wg-crypt-wg0 | wc -l', $wgstatus);
|
||||
$serviceStatus = $wgstatus[0] == 0 ? "down" : "up";
|
||||
$wg_state = ($wgstatus[0] > 0);
|
||||
exec('systemctl is-active wg-quick@wg0', $wgstatus);
|
||||
$serviceStatus = $wgstatus[0] == 'inactive' ? "down" : "up";
|
||||
$wg_state = ($wgstatus[0] == 'active' ? true : false );
|
||||
$public_ip = get_public_ip();
|
||||
|
||||
echo renderTemplate(
|
||||
|
|
Loading…
Reference in a new issue