mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
58d6951971
* nzbget: Fix configFile / dataDir checking in service script * nzbget: improve the description for the `configFile` option * nzbget: Add detail to the `configFile` option description * nzbget: Improve wording of `configFile` option * nzbget: Refactor dataDir management into systemd config * nzbget: Remove debug
120 lines
3.7 KiB
Nix
120 lines
3.7 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.nzbget;
|
|
dataDir = builtins.dirOf cfg.configFile;
|
|
in {
|
|
options = {
|
|
services.nzbget = {
|
|
enable = mkEnableOption "NZBGet";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.nzbget;
|
|
defaultText = "pkgs.nzbget";
|
|
description = "The NZBGet package to use";
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
type = types.str;
|
|
default = "/var/lib/nzbget";
|
|
description = "The directory where NZBGet stores its configuration files.";
|
|
};
|
|
|
|
openFirewall = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Open ports in the firewall for the NZBGet web interface
|
|
'';
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = "nzbget";
|
|
description = "User account under which NZBGet runs";
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "nzbget";
|
|
description = "Group under which NZBGet runs";
|
|
};
|
|
|
|
configFile = mkOption {
|
|
type = types.str;
|
|
default = "/var/lib/nzbget/nzbget.conf";
|
|
description = "Path for NZBGet's config file. (If this doesn't exist, the default config template is copied here.)";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.nzbget = {
|
|
description = "NZBGet Daemon";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = with pkgs; [
|
|
unrar
|
|
p7zip
|
|
];
|
|
preStart = ''
|
|
cfgtemplate=${cfg.package}/share/nzbget/nzbget.conf
|
|
if [ ! -f ${cfg.configFile} ]; then
|
|
echo "${cfg.configFile} not found. Copying default config $cfgtemplate to ${cfg.configFile}"
|
|
install -m 0700 $cfgtemplate ${cfg.configFile}
|
|
echo "Setting temporary \$MAINDIR variable in default config required in order to allow nzbget to complete initial start"
|
|
echo "Remember to change this to a proper value once NZBGet startup has been completed"
|
|
sed -i -e 's/MainDir=.*/MainDir=\/tmp/g' ${cfg.configFile}
|
|
fi
|
|
'';
|
|
|
|
script = ''
|
|
args="--daemon --configfile ${cfg.configFile}"
|
|
# The script in preStart (above) copies nzbget's config template to datadir on first run, containing paths that point to the nzbget derivation installed at the time.
|
|
# These paths break when nzbget is upgraded & the original derivation is garbage collected. If such broken paths are found in the config file, override them to point to
|
|
# the currently installed nzbget derivation.
|
|
cfgfallback () {
|
|
local hit=`grep -Po "(?<=^$1=).*+" "${cfg.configFile}" | sed 's/[ \t]*$//'` # Strip trailing whitespace
|
|
( test $hit && test -e $hit ) || {
|
|
echo "In ${cfg.configFile}, valid $1 not found; falling back to $1=$2"
|
|
args+=" -o $1=$2"
|
|
}
|
|
}
|
|
cfgfallback ConfigTemplate ${cfg.package}/share/nzbget/nzbget.conf
|
|
cfgfallback WebDir ${cfg.package}/share/nzbget/webui
|
|
${cfg.package}/bin/nzbget $args
|
|
'';
|
|
|
|
serviceConfig = {
|
|
StateDirectory = dataDir;
|
|
StateDirectoryMode = "0700";
|
|
Type = "forking";
|
|
User = cfg.user;
|
|
Group = cfg.group;
|
|
PermissionsStartOnly = "true";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
|
|
networking.firewall = mkIf cfg.openFirewall {
|
|
allowedTCPPorts = [ 8989 ];
|
|
};
|
|
|
|
users.users = mkIf (cfg.user == "nzbget") {
|
|
nzbget = {
|
|
group = cfg.group;
|
|
uid = config.ids.uids.nzbget;
|
|
};
|
|
};
|
|
|
|
users.groups = mkIf (cfg.group == "nzbget") {
|
|
nzbget = {
|
|
gid = config.ids.gids.nzbget;
|
|
};
|
|
};
|
|
};
|
|
}
|