Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / bin / tests / system / checkconf / notify.conf
blobfb89170f5e34e0bc81d76e806bb860168f050cc9
1 /*
2  * Copyright (C) 2014  Internet Systems Consortium, Inc. ("ISC")
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14  * PERFORMANCE OF THIS SOFTWARE.
15  */
17 view one {
18         notify master-only;
20         # also-notify inconsistent with master-only notify option
21         zone "slave" {
22                 type slave;
23                 masters { 1.2.3.4; };
24                 also-notify { 5.6.7.8; };
25         };
27         # OK
28         zone "master" {
29                 type master;
30                 file "filename";
31                 also-notify { 5.6.7.8; };
32         };
35 view two {
36         notify no;
38         # also-notify inconsistent with notify option at the view level
39         zone "slave" {
40                 type slave;
41                 masters { 1.2.3.4; };
42                 also-notify { 5.6.7.8; };
43         };
45         # OK
46         zone "master" {
47                 type master;
48                 file "filename";
49                 notify yes;
50                 also-notify { 5.6.7.8; };
51         };
54 view three {
55         # also-notify inconsistent with notify option at the zone level
56         zone "slave" {
57                 type slave;
58                 masters { 1.2.3.4; };
59                 notify no;
60                 also-notify { 5.6.7.8; };
61         };
63         # OK
64         zone "master" {
65                 type master;
66                 file "filename";
67                 also-notify { 5.6.7.8; };
68         };
71 view four {
72         also-notify { 5.6.7.8; };
74         # OK
75         zone "slave" {
76                 type slave;
77                 masters { 1.2.3.4; };
78                 notify master-only;
79         };
81         # OK
82         zone "master" {
83                 type master;
84                 file "filename";
85                 notify no;
86         };