blob: c85dc84cd65e377e71e7a3976515d370b1db4114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
chmod +x /etc/init.d/accel-pptp
mkdir /var/log/accel-pptp &> /dev/null
if [ -f /tmp/__accel-pptp.conf ]; then
mv /tmp/__accel-pptp.conf /etc/accel-pptp.conf
fi
exit 0
|