python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / networking / xinetd.nix
blob2ec0cd18dcba7e8ff60d4e23c8359d4c8101a68e
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   cfg = config.services.xinetd;
9   configFile = pkgs.writeText "xinetd.conf"
10     ''
11       defaults
12       {
13         log_type       = SYSLOG daemon info
14         log_on_failure = HOST
15         log_on_success = PID HOST DURATION EXIT
16         ${cfg.extraDefaults}
17       }
19       ${concatMapStrings makeService cfg.services}
20     '';
22   makeService = srv:
23     ''
24       service ${srv.name}
25       {
26         protocol    = ${srv.protocol}
27         ${optionalString srv.unlisted "type        = UNLISTED"}
28         ${optionalString (srv.flags != "") "flags = ${srv.flags}"}
29         socket_type = ${if srv.protocol == "udp" then "dgram" else "stream"}
30         ${if srv.port != 0 then "port        = ${toString srv.port}" else ""}
31         wait        = ${if srv.protocol == "udp" then "yes" else "no"}
32         user        = ${srv.user}
33         server      = ${srv.server}
34         ${optionalString (srv.serverArgs != "") "server_args = ${srv.serverArgs}"}
35         ${srv.extraConfig}
36       }
37     '';
43   ###### interface
45   options = {
47     services.xinetd.enable = mkEnableOption (lib.mdDoc "the xinetd super-server daemon");
49     services.xinetd.extraDefaults = mkOption {
50       default = "";
51       type = types.lines;
52       description = lib.mdDoc ''
53         Additional configuration lines added to the default section of xinetd's configuration.
54       '';
55     };
57     services.xinetd.services = mkOption {
58       default = [];
59       description = lib.mdDoc ''
60         A list of services provided by xinetd.
61       '';
63       type = with types; listOf (submodule ({
65         options = {
67           name = mkOption {
68             type = types.str;
69             example = "login";
70             description = lib.mdDoc "Name of the service.";
71           };
73           protocol = mkOption {
74             type = types.str;
75             default = "tcp";
76             description =
77               lib.mdDoc "Protocol of the service.  Usually `tcp` or `udp`.";
78           };
80           port = mkOption {
81             type = types.int;
82             default = 0;
83             example = 123;
84             description = lib.mdDoc "Port number of the service.";
85           };
87           user = mkOption {
88             type = types.str;
89             default = "nobody";
90             description = lib.mdDoc "User account for the service";
91           };
93           server = mkOption {
94             type = types.str;
95             example = "/foo/bin/ftpd";
96             description = lib.mdDoc "Path of the program that implements the service.";
97           };
99           serverArgs = mkOption {
100             type = types.separatedString " ";
101             default = "";
102             description = lib.mdDoc "Command-line arguments for the server program.";
103           };
105           flags = mkOption {
106             type = types.str;
107             default = "";
108             description = lib.mdDoc "";
109           };
111           unlisted = mkOption {
112             type = types.bool;
113             default = false;
114             description = lib.mdDoc ''
115               Whether this server is listed in
116               {file}`/etc/services`.  If so, the port
117               number can be omitted.
118             '';
119           };
121           extraConfig = mkOption {
122             type = types.lines;
123             default = "";
124             description = lib.mdDoc "Extra configuration-lines added to the section of the service.";
125           };
127         };
129       }));
131     };
133   };
136   ###### implementation
138   config = mkIf cfg.enable {
139     systemd.services.xinetd = {
140       description = "xinetd server";
141       after = [ "network.target" ];
142       wantedBy = [ "multi-user.target" ];
143       path = [ pkgs.xinetd ];
144       script = "exec xinetd -syslog daemon -dontfork -stayalive -f ${configFile}";
145     };
146   };