fstab additional mount and named

Since Fedora 8, windows partitions seem mounted automatically by default resulting /media/.hal-mtab file. Here is the old appending stuff to my fstab file, just for backup, in case of need.

/dev/sda1 /mnt/dos-c ntfs-3g ro,defaults,umask=0222 0 0
/dev/sda5 /mnt/dos-d vfat auto,defaults,rw,umask=0002,uid=****,gid=root,iocharset=utf8 0 0
/dev/sda6 /mnt/dos-e vfat auto,defaults,rw,umask=0002,uid=****,gid=root,iocharset=utf8 0 0

appending text to /var/named/chroot/var/named.conf:

zone “—-.org” IN {
type master;
file “—-.org”;
allow-update {none;};
};

zone “2.168.192.in-addr.arpr” IN {
type master;
file “192.168.2.4.zone”;
allow-update {none;};
};

and corresponding /var/named/chroot/var/named/—-.org and 192.168.2.4.zone

$TTL 86400
@ IN SOA ns.—-.org. @@@@.@@@@.com (
2007111400 ; Serial no., based on date
3H ; Refresh after 3 hours
15M ; Retry after 15 minutes
1W ; Expire after 7 days
1D ; Minimum TTL of 1 day
)
@ IN A some-wan-address
ns IN A some-wan-address
mx IN A some-wan-address
@ IN NS ns
@ IN MX 5 @
www IN CNAME @
ftp IN CNAME @

$TTL 86400
@ IN SOA ns.—-.org. @@@@.@@@@.com (
2007111400 ; Serial no., based on date
3H ; Refresh after 3 hours
15M ; Retry after 15 minutes
1W ; Expire after 7 days
1D ; Minimum TTL of 1 day
)
@ IN NS ns.—-.org.
4 IN PTR ns.—-.org.