diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-11-11 20:10:21 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-11-11 20:10:21 +0000 |
commit | 0192040469316eb366aaaead3870880bcb34373b (patch) | |
tree | 789ab16617e18a9a9243e6530d009d0b36f0ec33 /net-dialup | |
parent | small fix (diff) | |
download | gentoo-2-0192040469316eb366aaaead3870880bcb34373b.tar.gz gentoo-2-0192040469316eb366aaaead3870880bcb34373b.tar.bz2 gentoo-2-0192040469316eb366aaaead3870880bcb34373b.zip |
small fix
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/ppp/files/2.4.1-r6/net.ppp0 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-dialup/ppp/files/2.4.1-r6/net.ppp0 b/net-dialup/ppp/files/2.4.1-r6/net.ppp0 index 55a1ec38b4e0..9940e35fbb08 100644 --- a/net-dialup/ppp/files/2.4.1-r6/net.ppp0 +++ b/net-dialup/ppp/files/2.4.1-r6/net.ppp0 @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Author Martin Schlemmer <azarah@gentoo.org> # Credits To all those I got ideas from :) -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/files/2.4.1-r6/net.ppp0,v 1.1 2001/11/11 19:47:03 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/files/2.4.1-r6/net.ppp0,v 1.2 2001/11/11 20:10:21 azarah Exp $ PEER="isp" # Define peer (aka ISP) DEBUG="no" # Turn on debugging @@ -172,9 +172,9 @@ setup_cfg_files() { >/etc/ppp/peers/${PEER} # Setup the secrets files - echo "${USERNAME} ${PEER} ${PASSWORD}" >/etc/ppp/chap-secrets + echo "${USERNAME} ${PEER} \"${PASSWORD}\"" >/etc/ppp/chap-secrets chmod 660 /etc/ppp/chap-secrets - echo "${USERNAME} ${PEER} ${PASSWORD}" >/etc/ppp/pap-secrets + echo "${USERNAME} ${PEER} \"${PASSWORD}\"" >/etc/ppp/pap-secrets chmod 660 /etc/ppp/pap-secrets # Setup the chat file |