conf/119550: [ppp] ppp not starting during bootup.

Fedorenko Vadim admin at dvaris.ru
Sun Jul 13 22:10:05 UTC 2008


The following reply was made to PR conf/119550; it has been noted by GNATS.

From: Fedorenko Vadim <admin at dvaris.ru>
To: bug-followup at FreeBSD.org, mel.xyzzy at rachie.is-a-geek.net
Cc:  
Subject: Re: conf/119550: [ppp] ppp not starting during bootup.
Date: Mon, 14 Jul 2008 01:52:19 +0400

 Hello!
 
   The problem is in /etc/rc.d/ppp script's function
   ppp_start_profile():
 
   su -m $ppp_user -c "$command ${rc_flags} ${_ppp_profile}"
   
   The su command does not execute during bootup that's why ppp is not
   started.
   Fix:
   Replace
      su -m $ppp_user -c "$command ${rc_flags} ${_ppp_profile}"
   with
     $command ${rc_flags} ${_ppp_profile}
 
   ppp will be executed with root privileges
 -- 
 WBR, Fedorenko Vadim
 
 


More information about the freebsd-bugs mailing list