no need for the sed using printf

This commit is contained in:
Roy Marples 2007-04-19 12:09:19 +00:00
parent d3b28724b5
commit 768a8cf86c
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ pppd_pre_start() {
mark_service_inactive "${SVCNAME}"
if [ -n "${username}" ] \
&& [ -n "${password}" -o -z "${passwordset}" ] ; then
printf "%s" "${password}" | sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' | \
printf "%s" "${password}" | \
eval start-stop-daemon --start --exec /usr/sbin/pppd \
--pidfile "/var/run/ppp-${IFACE}.pid" -- "${opts}" >/dev/null
else