3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #19624 from bjornfor/improve-atftpd-service

nixos/atftpd: various improvements
This commit is contained in:
Jörg Thalheim 2016-10-22 18:08:53 +02:00 committed by GitHub
commit fafe3ec40a

View file

@ -20,13 +20,27 @@ in
default = false;
type = types.bool;
description = ''
Whenever to enable the atftpd TFTP server.
Whether to enable the atftpd TFTP server. By default, the server
binds to address 0.0.0.0.
'';
};
extraOptions = mkOption {
default = [];
type = types.listOf types.str;
example = literalExample ''
[ "--bind-address 192.168.9.1"
"--verbose=7"
]
'';
description = ''
Extra command line arguments to pass to atftp.
'';
};
root = mkOption {
default = "/var/empty";
type = types.str;
default = "/srv/tftp";
type = types.path;
description = ''
Document root directory for the atftpd.
'';
@ -39,11 +53,11 @@ in
config = mkIf cfg.enable {
systemd.services.atftpd = {
description = "atftpd TFTP server";
description = "TFTP Server";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
# runs as nobody
serviceConfig.ExecStart = "${pkgs.atftp}/sbin/atftpd --daemon --no-fork --bind-address 0.0.0.0 ${cfg.root}";
serviceConfig.ExecStart = "${pkgs.atftp}/sbin/atftpd --daemon --no-fork ${lib.concatStringsSep " " cfg.extraOptions} ${cfg.root}";
};
};