14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
RET=$(pgrep xl2tpd)
|
|
|
|
if [ $? -eq 1 ]; then
|
|
systemctl restart xl2tpd
|
|
fi
|
|
|
|
RET=$(pgrep starter)
|
|
|
|
if [ $? -eq 1 ]; then
|
|
systemctl restart strongswan
|
|
fi
|