PN: bind
PV: 9.18.33
PR: r0
PKGV: 9.18.33
PKGR: r0@EXTENDPRAUTO@
LICENSE: MPL-2.0
DESCRIPTION: BIND 9 provides a full-featured Domain Name Server system
SUMMARY: ISC Internet Domain Name Server
RDEPENDS:bind: base-files base-passwd shadow bind-libs (>= 9.18.33) glibc (>= 2.39+git0+b027d5b145) libcap (>= 2.69) libcrypto (>= 3.2.4) libuv (>= 1.48.0) zlib (>= 1.3.1)
SECTION: console/network
PKG:bind: bind
FILES:bind: /usr/bin/* /usr/sbin/* /usr/libexec/* /usr/lib/lib*.so.*             /etc /com /var             /usr/bin/* /usr/sbin/*             /usr/lib/*.so.*             /lib/udev /usr/lib/udev             /usr/lib/udev /usr/lib/udev             /usr/share/bind /usr/lib/bind/*             /usr/share/pixmaps /usr/share/applications             /usr/share/idl /usr/share/omf /usr/share/sounds             /usr/lib/bonobo/servers /usr/sbin/generate-rndc-key.sh /usr/lib/systemd/system-preset/98-bind.preset /usr/lib/systemd/system/named.service
CONFFILES:bind:  \t/etc/bind/named.conf \t/etc/bind/named.conf.local \t/etc/bind/named.conf.options \t/etc/bind/db.0 \t/etc/bind/db.127 \t/etc/bind/db.empty \t/etc/bind/db.local \t/etc/bind/db.root \t
FILES_INFO:bind: {"/etc/bind/bind.keys": 2928, "/etc/bind/db.0": 237, "/etc/bind/db.127": 271, "/etc/bind/db.255": 237, "/etc/bind/db.empty": 353, "/etc/bind/db.local": 256, "/etc/bind/db.root": 1507, "/etc/bind/named.conf": 1530, "/etc/bind/named.conf.local": 165, "/etc/bind/named.conf.options": 782, "/etc/bind/rndc.conf": 98, "/etc/bind/zones.rfc1918": 1317, "/etc/default/bind9": 51, "/etc/tmpfiles.d/bind.conf": 32, "/usr/bin/arpaname": 5512, "/usr/bin/delv": 33076, "/usr/bin/dnssec-cds": 30692, "/usr/bin/dnssec-dsfromkey": 21960, "/usr/bin/dnssec-importkey": 21960, "/usr/bin/dnssec-keyfromlabel": 26056, "/usr/bin/dnssec-keygen": 34244, "/usr/bin/dnssec-revoke": 17860, "/usr/bin/dnssec-settime": 26052, "/usr/bin/dnssec-signzone": 62940, "/usr/bin/dnssec-verify": 17864, "/usr/bin/named-checkconf": 21948, "/usr/bin/named-checkzone": 21948, "/usr/bin/named-compilezone": 21948, "/usr/bin/named-journalprint": 9616, "/usr/bin/named-rrchecker": 13708, "/usr/bin/nsec3hash": 9612, "/usr/lib/bind/filter-a.so": 13644, "/usr/lib/bind/filter-aaaa.so": 13648, "/usr/lib/systemd/system-preset/98-bind.preset": 21, "/usr/lib/systemd/system/named.service": 544, "/usr/sbin/ddns-confgen": 13708, "/usr/sbin/generate-rndc-key.sh": 206, "/usr/sbin/named": 364584, "/usr/sbin/rndc": 25988, "/usr/sbin/rndc-confgen": 13708, "/usr/sbin/tsig-keygen": 13708}
pkg_postinst:bind: #!/bin/sh\nset -e\nif systemctl >/dev/null 2>/dev/null; then\n\tOPTS=""\n\n\tif [ -n "$D" ]; then\n\t\tOPTS="--root=$D"\n\tfi\n\n\tif [ "enable" = "enable" ]; then\n\t\tfor service in named.service; do\n\t\t\tsystemctl ${OPTS} enable "$service"\n\t\tdone\n\tfi\n\n\tif [ -z "$D" ]; then\n\t\tsystemctl daemon-reload\n\t\tsystemctl preset named.service\n\n\t\tif [ "enable" = "enable" ]; then\n\t\t\tsystemctl --no-block restart named.service\n\t\tfi\n\tfi\nfi\n
pkg_preinst:bind: #!/bin/sh\nset -e\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "bind: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "bind: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "bind: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "bind: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "bind: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "bind: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "bind: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "bind: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "bind: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "bind: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM=""\n\tUSERADD_PARAM="--system --home /var/cache/bind --no-create-home                        --user-group bind"\n\tGROUPMEMS_PARAM=""\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
pkg_prerm:bind: #!/bin/sh\nset -e\nif systemctl >/dev/null 2>/dev/null; then\n\tif [ -z "$D" ]; then\n\t\tsystemctl stop named.service\n\n\t\tsystemctl disable named.service\n\tfi\nfi\n
FILERDEPENDSFLIST:bind: /usr/bin/arpaname /usr/bin/delv /usr/bin/dnssec-cds /usr/bin/dnssec-dsfromkey /usr/bin/dnssec-importkey /usr/bin/dnssec-keyfromlabel /usr/bin/dnssec-keygen /usr/bin/dnssec-revoke /usr/bin/dnssec-settime /usr/bin/dnssec-signzone /usr/bin/dnssec-verify /usr/bin/named-checkconf /usr/bin/named-checkzone /usr/bin/named-compilezone /usr/bin/named-journalprint /usr/bin/named-rrchecker /usr/bin/nsec3hash /usr/lib/bind/filter-a.so /usr/lib/bind/filter-aaaa.so /usr/sbin/ddns-confgen /usr/sbin/generate-rndc-key.sh /usr/sbin/named /usr/sbin/rndc /usr/sbin/rndc-confgen /usr/sbin/tsig-keygen
FILERDEPENDS:/usr/bin/arpaname:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/delv:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libisccfg-9.18.33.so libirs-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-cds:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-dsfromkey:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-importkey:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-keyfromlabel:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-keygen:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libisccfg-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-revoke:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-settime:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-signzone:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/dnssec-verify:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/named-checkconf:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libns-9.18.33.so libisccfg-9.18.33.so libbind9-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/named-checkzone:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libns-9.18.33.so libisccfg-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/named-compilezone:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libns-9.18.33.so libisccfg-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/named-journalprint:bind:  libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) ld-linux-armhf.so.3(GLIBC_2.4) libdns-9.18.33.so libisc-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/named-rrchecker:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libdns-9.18.33.so libisc-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/nsec3hash:bind:  libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) ld-linux-armhf.so.3(GLIBC_2.4) libdns-9.18.33.so libisc-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/bind/filter-a.so:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libz.so.1 libpthread.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/bind/filter-aaaa.so:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libz.so.1 libpthread.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/ddns-confgen:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/generate-rndc-key.sh:bind:  /bin/sh
FILERDEPENDS:/usr/sbin/named:bind:  libcrypto.so.3(OPENSSL_3.0.0) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libns-9.18.33.so libisccc-9.18.33.so libisccfg-9.18.33.so libbind9-9.18.33.so libcrypto.so.3 libcap.so.2 libuv.so.1 libz.so.1 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/rndc:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libisccc-9.18.33.so libisccfg-9.18.33.so libbind9-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/rndc-confgen:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/sbin/tsig-keygen:bind:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libisc-9.18.33.so libdns-9.18.33.so libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
PKGSIZE:bind: 830863
