diff options
| author | Nicolas Thill <nico@openwrt.org> | 2007-04-21 20:19:54 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2007-04-21 20:19:54 +0000 |
| commit | 8714d44dad09f912f8f7b27823800e82310ac304 (patch) | |
| tree | f2e6642cfbdfcb5fd9e01b91cc6afa1e67453857 | |
| parent | 51a5cb41a01e16d9e3d3d702fccc86e68768fc52 (diff) | |
| download | upstream-8714d44dad09f912f8f7b27823800e82310ac304.tar.gz upstream-8714d44dad09f912f8f7b27823800e82310ac304.tar.bz2 upstream-8714d44dad09f912f8f7b27823800e82310ac304.zip | |
fix start_pppd for pptp (closes: #1612)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7027 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/pptp/files/pptp.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/pptp/files/pptp.sh b/package/pptp/files/pptp.sh index fffa625a2fc..c61bdc02062 100644 --- a/package/pptp/files/pptp.sh +++ b/package/pptp/files/pptp.sh @@ -17,7 +17,7 @@ setup_interface_pptp() { config_get server "$cfg" server mtu=${mtu:-1452} start_pppd "$config" \ - pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" - file /etc/ppp/options.pptp + pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \ + file /etc/ppp/options.pptp \ mtu $mtu mru $mtu } |
