View | Details | Raw Unified | Return to bug 15304
Collapse All | Expand All

(-)debian/changelog (+24 lines)
 Lines 1-3    Link Here 
1
univention-bind (4.1.3-1) unstable; urgency=low
2
3
  * set bind/ipv6=no again on install to reflect default UCS behavior (Bug #15304)
4
5
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Tue, 20 Oct 2009 16:25:06 +0200
6
7
univention-bind (4.1.2-1) unstable; urgency=low
8
9
  * UCR variable bind/ipv6 also enables/disables IPv6 in univention-bind-proxy (Bug #15304)
10
11
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Mon, 19 Oct 2009 14:29:02 +0200
12
13
univention-bind (4.1.1-1) unstable; urgency=low
14
15
  * set bind/ipv6=yes on install to reflect default UCS behavior (Bug #15304)
16
17
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Thu, 15 Oct 2009 16:51:16 +0200
18
19
univention-bind (4.1.0-1) unstable; urgency=low
20
21
  * new UCR variable bind/ipv6 will switch IPv6 functionality on and off (Bug #15304)
22
23
 -- Kai-Wilhelm Bolte <bolte@univention.de>  Mon, 24 Aug 2009 09:54:23 +0200
24
1
univention-bind (4.0.2-1) unstable; urgency=low
25
univention-bind (4.0.2-1) unstable; urgency=low
2
26
3
  * bumped version (Bug #13505)
27
  * bumped version (Bug #13505)
(-)debian/univention-bind.postinst (+1 lines)
 Lines 34-39    Link Here 
34
chmod g+w /etc/bind/*
34
chmod g+w /etc/bind/*
35
35
36
univention-baseconfig set bind/autostart?yes
36
univention-baseconfig set bind/autostart?yes
37
univention-baseconfig set bind/ipv6?no
37
38
38
if [ "$1" = "configure" -a -n "$2" ]; then
39
if [ "$1" = "configure" -a -n "$2" ]; then
39
40
(-)debian/univention-bind-proxy.univention-config-registry-variables (+5 lines)
 Lines 34-36    Link Here 
34
Type=str
34
Type=str
35
Categories=service-bind,system-services
35
Categories=service-bind,system-services
36
36
37
[bind/ipv6]
38
Description[de]=Schaltet IPv6-Funktionalität in Bind an und aus
39
Description[en]=Switches bind's IPv6 functionality on and off
40
Type=str
41
Categories=service-bind
(-)debian/univention-bind.univention-config-registry (+1 lines)
 Lines 1-5    Link Here 
1
Type: file
1
Type: file
2
File: etc/bind/named.conf
2
File: etc/bind/named.conf
3
Variables: bind/ipv6
3
4
4
Type: file
5
Type: file
5
File: etc/runit/univention-bind/run
6
File: etc/runit/univention-bind/run
(-)conffiles/etc/bind/named.conf (+6 lines)
 Lines 18-23    Link Here 
18
    also-notify {
18
    also-notify {
19
        127.0.0.1;
19
        127.0.0.1;
20
    };
20
    };
21
@!@
22
if not configRegistry.get('bind/ipv6', 'yes' ).lower() in ( 'no', 'false', '0' ):
23
        print '    listen-on-v6 { any; };'
24
else:
25
        print '    listen-on-v6 { none; };'
26
@!@
21
};
27
};
22
28
23
include "/etc/bind/univention.conf";
29
include "/etc/bind/univention.conf";
(-)conffiles/etc/bind/named.conf.proxy (+6 lines)
 Lines 15-20    Link Here 
15
};			
15
};			
16
options {
16
options {
17
    directory "/var/cache/bind";
17
    directory "/var/cache/bind";
18
@!@
19
if not configRegistry.get('bind/ipv6', 'yes' ).lower() in ( 'no', 'false', '0' ):
20
        print '    listen-on-v6 { any; };'
21
else:
22
        print '    listen-on-v6 { none; };'
23
@!@
18
};
24
};
19
logging {
25
logging {
20
   category lame-servers { null; };
26
   category lame-servers { null; };

Return to bug 15304