Date: Thu, 30 Jun 2005 18:10:22 GMT From: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp> To: freebsd-bugs@FreeBSD.org Subject: Re: conf/82738: add amd_program line to defaults/rc.conf Message-ID: <200506301810.j5UIAM5a012318@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/82738; it has been noted by GNATS. From: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp> To: bug-followup@FreeBSD.org Cc: fmysh@iijmio-mail.jp Subject: Re: conf/82738: add amd_program line to defaults/rc.conf Date: Fri, 1 Jul 2005 03:09:57 +0900 If you install ports/sysutils/am-utils and set amd_program="/usr/local/sbin/amd" in /etc/rc.conf, amd won't start during the system boot time. This is because amd is dynamically linked to libraries in /usr/local/lib which is not merged to the search path yet at the time amd starts up. Dependency of /etc/rc.d/amd on /etc/rc.d/ldconfig may resolve this. But is this a correct way? Index: amd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/amd,v retrieving revision 1.15 diff -u -r1.15 amd --- amd 16 Jan 2005 03:12:03 -0000 1.15 +++ amd 30 Jun 2005 17:58:06 -0000 @@ -5,7 +5,7 @@ # # PROVIDE: amd -# REQUIRE: rpcbind ypbind nfsclient cleanvar +# REQUIRE: rpcbind ypbind nfsclient cleanvar ldconfig # BEFORE: DAEMON # KEYWORD: nojail -- TAOKA Fumiyoshi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200506301810.j5UIAM5a012318>