services.tahoe: Use 1.13-compatible invocations.

This commit is contained in:
Corbin 2019-02-19 10:23:47 -08:00
parent fa6ad02951
commit 00d6b4cbc7

View File

@ -234,10 +234,10 @@ in
Type = "simple"; Type = "simple";
PIDFile = pidfile; PIDFile = pidfile;
# Believe it or not, Tahoe is very brittle about the order of # 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. # and arguments which alter Twisted's behavior come afterwards.
ExecStart = '' 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 = '' preStart = ''
@ -337,10 +337,10 @@ in
Type = "simple"; Type = "simple";
PIDFile = pidfile; PIDFile = pidfile;
# Believe it or not, Tahoe is very brittle about the order of # 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. # and arguments which alter Twisted's behavior come afterwards.
ExecStart = '' 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 = '' preStart = ''