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>
This commit is contained in:
Stijn Tintel 2017-08-01 03:29:45 +02:00
parent 44ef6048e2
commit b93a53bd94
1 changed files with 2 additions and 2 deletions

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