mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +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
@ -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…
x
Reference in New Issue
Block a user