mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
Merge pull request #20 from Mic92/local-sudo
fix local deployment with sudo
This commit is contained in:
commit
3e731035ed
1 changed files with 6 additions and 3 deletions
|
@ -18,8 +18,11 @@ in
|
|||
}";
|
||||
|
||||
runShell = target: command:
|
||||
if lib.isLocalTarget target
|
||||
then command
|
||||
let
|
||||
command' = if target.sudo then "sudo ${command}" else command;
|
||||
in
|
||||
if lib.isLocalTarget target
|
||||
then command'
|
||||
else
|
||||
writers.writeDash "krops.${target.host}.${lib.firstWord command}" ''
|
||||
exec ${openssh}/bin/ssh ${lib.escapeShellArgs (lib.flatten [
|
||||
|
@ -28,7 +31,7 @@ in
|
|||
"-T"
|
||||
target.extraOptions
|
||||
target.host
|
||||
(if target.sudo then "sudo ${command}" else command)])}
|
||||
command'])}
|
||||
'';
|
||||
|
||||
writeCommand = name: {
|
||||
|
|
Loading…
Reference in a new issue