use the new flag by default
[packages/xinetd.git] / contrib / empty.conf
1 # This is an empty xinetd service configuration. To add a service to 
2 # xinetd copy this file to /etc/xinetd.d giving it a name similar to the
3 # service you are adding. Next change the service name before the curly
4 # brace to match the name found in /etc/services. Then modify the following
5 # attributes
6
7 service empty
8 {
9 # This is for quick on or off of the service
10         disable         = no
11
12 # The next attributes are mandatory for all services
13         id              =
14         type            =
15         wait            =
16         socket_type     =
17 #       protocol        =  socket type is usually enough
18
19 # External services must fill out the following
20         user            =
21         group           =
22         server          =
23         server_args     =
24
25 # External services not listed in /etc/services must fill out the next one
26         port            =
27
28 # RPC based services must fill out these
29         rpc_version     =
30         rpc_number      =
31
32 # Logging options
33         log_type        =
34         log_on_success  =
35         log_on_failure  =
36
37 # Networking options
38         flags           =
39         bind            =
40         redirect        =
41         v6only          = 
42
43 # Access restrictions
44         only_from       =
45         no_access       =
46         access_times    =
47         cps             =
48         instances       =
49         per_source      =
50         max_load        =
51         deny_time       =
52         mdns            = 
53
54 # Environmental options
55         env             =
56         passenv         =
57         nice            =
58         umask           =
59         groups          = 
60         rlimit_as       =
61         rlimit_cpu      =
62         rlimit_data     =
63         rlimit_rss      =
64         rlimit_stack    =
65
66 # Banner options. (Banners aren't normally used)
67 #       banner          =
68 #       banner_success  =
69 #       banner_fail     =
70 }
71