mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Update method to determine wg-quick state, resolves #1601
This commit is contained in:
parent
6541e9b2e1
commit
828a463888
@ -64,9 +64,9 @@ function DisplayWireGuardConfig()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// fetch service status
|
// fetch service status
|
||||||
exec('pidof wg-crypt-wg0 | wc -l', $wgstatus);
|
exec('systemctl is-active wg-quick@wg0', $wgstatus);
|
||||||
$serviceStatus = $wgstatus[0] == 0 ? "down" : "up";
|
$serviceStatus = $wgstatus[0] == 'inactive' ? "down" : "up";
|
||||||
$wg_state = ($wgstatus[0] > 0);
|
$wg_state = ($wgstatus[0] == 'active' ? true : false );
|
||||||
$public_ip = get_public_ip();
|
$public_ip = get_public_ip();
|
||||||
|
|
||||||
echo renderTemplate(
|
echo renderTemplate(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user