8 lines
93 B
Bash
8 lines
93 B
Bash
#!/usr/bin/env bash
|
|
|
|
RET=$(pgrep pptpd)
|
|
|
|
if [ $? -eq 1 ]; then
|
|
/etc/init.d/pptpd restart
|
|
fi
|