Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 257632 - net-dns/bind: BIND init script does not work if using DLZ
Summary: net-dns/bind: BIND init script does not work if using DLZ
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: All Linux
: High trivial (vote)
Assignee: BIND Maintainers (DISABLED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-04 16:18 UTC by steveb
Modified: 2009-11-12 10:36 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description steveb 2009-02-04 16:18:20 UTC
If you use DLZ with BIND, then the init script will fail to start bind because the storage for DLZ might not be up and running.

I am using PostgreSQL and BIND DLZ and each time when I reboot the system BIND does not start because the PostgreSQL server get's started after BIND.

The fix would be to pretty easy. Just adding one "after" line in depend() for the named init.d script:
depend() {
  need net
  use logger
  after pg_autovacuum postgresql mysql ldap
  provide dns
}
Comment 1 Tomáš Chvátal (RETIRED) gentoo-dev 2009-11-12 08:40:53 UTC
Fixed for 9.6.1-r1.
Comment 2 steveb 2009-11-12 10:36:50 UTC
Thanks!