Skip to content

Commit

Permalink
cardano-node-service: put the 'executable' service option in full con…
Browse files Browse the repository at this point in the history
…trol of the invocation string
  • Loading branch information
deepfire committed Jun 24, 2022
1 parent 6e08bff commit b407ac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/nixos/cardano-node-service.nix
Expand Up @@ -135,7 +135,7 @@ let
${pkgs.rsync}/bin/rsync --archive --ignore-errors --exclude 'clean' ${cfg.databasePath}/ ${instanceDbPath}/ || true
fi
''}
exec ${toString cmd}'';
${toString cmd}'';
in {
options = {
services.cardano-node = {
Expand Down Expand Up @@ -203,7 +203,7 @@ in {

executable = mkOption {
type = types.str;
default = "${cfg.package}/bin/cardano-node";
default = "exec ${cfg.package}/bin/cardano-node";
defaultText = "cardano-node";
description = ''
The cardano-node executable invocation to use
Expand Down

0 comments on commit b407ac8

Please sign in to comment.