about summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2019-02-19 10:23:47 -0800
committerCorbin <cds@corbinsimpson.com>2019-02-19 10:23:47 -0800
commit00d6b4cbc7daf19c44e81387f5d345b8ffdc461e (patch)
tree8fdb6f719e40ba9f51ca72c218f46caae48ff1be /nixos/modules/services/network-filesystems
parentfa6ad02951a47bc4f34b4559f33dfff15a71ca40 (diff)
downloadnixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar.gz
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar.bz2
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar.lz
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar.xz
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.tar.zst
nixlib-00d6b4cbc7daf19c44e81387f5d345b8ffdc461e.zip
services.tahoe: Use 1.13-compatible invocations.
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/tahoe.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/network-filesystems/tahoe.nix b/nixos/modules/services/network-filesystems/tahoe.nix
index e7b048a6741c..7d75eb286106 100644
--- a/nixos/modules/services/network-filesystems/tahoe.nix
+++ b/nixos/modules/services/network-filesystems/tahoe.nix
@@ -234,10 +234,10 @@ in
               Type = "simple";
               PIDFile = pidfile;
               # Believe it or not, Tahoe is very brittle about the order of
-              # arguments to $(tahoe start). The node directory must come first,
+              # arguments to $(tahoe run). The node directory must come first,
               # and arguments which alter Twisted's behavior come afterwards.
               ExecStart = ''
-                ${settings.package}/bin/tahoe start ${lib.escapeShellArg nodedir} -n -l- --pidfile=${lib.escapeShellArg pidfile}
+                ${settings.package}/bin/tahoe run ${lib.escapeShellArg nodedir} --pidfile=${lib.escapeShellArg pidfile}
               '';
             };
             preStart = ''
@@ -337,10 +337,10 @@ in
               Type = "simple";
               PIDFile = pidfile;
               # Believe it or not, Tahoe is very brittle about the order of
-              # arguments to $(tahoe start). The node directory must come first,
+              # arguments to $(tahoe run). The node directory must come first,
               # and arguments which alter Twisted's behavior come afterwards.
               ExecStart = ''
-                ${settings.package}/bin/tahoe start ${lib.escapeShellArg nodedir} -n -l- --pidfile=${lib.escapeShellArg pidfile}
+                ${settings.package}/bin/tahoe run ${lib.escapeShellArg nodedir} --pidfile=${lib.escapeShellArg pidfile}
               '';
             };
             preStart = ''