Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Jul 2008 22:10:04 GMT
From:      Fedorenko Vadim <admin@dvaris.ru>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: conf/119550: [ppp] ppp not starting during bootup.
Message-ID:  <200807132210.m6DMA47E008670@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

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

From: Fedorenko Vadim <admin@dvaris.ru>
To: bug-followup@FreeBSD.org, mel.xyzzy@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
 
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200807132210.m6DMA47E008670>