We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7bc10a commit aa1b5d8Copy full SHA for aa1b5d8
tasks-dsl/src/main/scala/net/codejitsu/tasks/Cp.scala
@@ -18,7 +18,7 @@ import net.codejitsu.tasks.dsl._
18
class Cp[S <: Stage](hosts: Hosts, source: String, destination: String,
19
params: List[String] = Nil, usingSudo: Boolean = false,
20
usingPar: Boolean = false, exec: String = "/bin/cp")(implicit user: User, stage: S, rights: S Allow Cp[S])
21
- extends GenericTask("rsync", "copy file(s)", hosts, exec, params ::: List(source, destination),
+ extends GenericTask("cp", "copy file(s)", hosts, exec, params ::: List(source, destination),
22
usingSudo, usingPar, taskRepr = s"copy file(s) '${source}' -> '${destination}'") with UsingSudo[Cp[S]] with UsingParallelExecution[Cp[S]] {
23
24
override def sudo: Cp[S] = Cp[S](hosts, source, destination, params, true, usingPar, exec)
0 commit comments