fixes init script for non ipv6 enabled systems #472755
[packages/xinetd.git] / debian / xinetd.d / daytime
1 # default: off
2 # description: An internal xinetd service which gets the current system time
3 # then prints it out in a format like this: "Wed Nov 13 22:30:27 EST 2002".
4 # This is the tcp version.
5 service daytime
6 {
7         disable         = yes
8         type            = INTERNAL
9         id              = daytime-stream
10         socket_type     = stream
11         protocol        = tcp
12         user            = root
13         wait            = no
14 }                                                                               
15
16 # This is the udp version.
17 service daytime
18 {
19         disable         = yes
20         type            = INTERNAL
21         id              = daytime-dgram
22         socket_type     = dgram
23         protocol        = udp
24         user            = root
25         wait            = yes
26 }