make install of config files more straightforward.
[packages/xinetd.git] / debian / xinetd.d / chargen
1 # default: off
2 # description: An xinetd internal service which generate characters.  The
3 # xinetd internal service which continuously generates characters until the
4 # connection is dropped.  The characters look something like this:
5 # !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg
6 # This is the tcp version.
7 service chargen
8 {
9         disable         = yes
10         type            = INTERNAL
11         id              = chargen-stream
12         socket_type     = stream
13         protocol        = tcp
14         user            = root
15         wait            = no
16 }                                                                               
17
18 # This is the udp version.
19 service chargen
20 {
21         disable         = yes
22         type            = INTERNAL
23         id              = chargen-dgram
24         socket_type     = dgram
25         protocol        = udp
26         user            = root
27         wait            = yes
28 }