forked from mirrors/nixpkgs
nixos/tinc: Fix tinc cli wrapper for tinc 1.0.
tinc prior to 1.1 doesn't have the `tinc` executable, and `tincd` isn't of any use while the daemon already runs.
This commit is contained in:
parent
8180085733
commit
8cea87c1eb
|
@ -199,8 +199,10 @@ in
|
|||
buildInputs = [ pkgs.makeWrapper ];
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin
|
||||
${concatStringsSep "\n" (mapAttrsToList (network: data: ''
|
||||
makeWrapper ${data.package}/bin/tinc "$out/bin/tinc.${network}" --add-flags "--pidfile=/run/tinc.${network}.pid"
|
||||
${concatStringsSep "\n" (mapAttrsToList (network: data:
|
||||
optionalString (versionAtLeast data.package.version "1.1pre") ''
|
||||
makeWrapper ${data.package}/bin/tinc "$out/bin/tinc.${network}" \
|
||||
--add-flags "--pidfile=/run/tinc.${network}.pid"
|
||||
'') cfg.networks)}
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue