Browse Source

strongswan: check return value instead of output

When the strongswan service is running, `ipsec status` returns 0. Check
the return value instead of checking its output.

While at it, remove the [[ ]] bashism, use rereadall instead of
(reread)secrets, and move it inside the if statement.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
lilik-openwrt-22.03
Stijn Tintel 7 years ago
parent
commit
b93a53bd94
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      net/strongswan/files/ipsec.init

+ 2
- 2
net/strongswan/files/ipsec.init View File

@ -331,8 +331,8 @@ restart() {
reload() {
prepare_env
ipsec secrets
if [[ ! -z "$(ipsec status)" ]]; then
if ipsec status > /dev/null 2>&1; then
ipsec rereadall
ipsec reload
else
ipsec start


Loading…
Cancel
Save