aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/rsyncdeploystep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/rsyncdeploystep.h')
-rw-r--r--src/plugins/remotelinux/rsyncdeploystep.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/rsyncdeploystep.h b/src/plugins/remotelinux/rsyncdeploystep.h
index ddc627e7dc..e71a57a11d 100644
--- a/src/plugins/remotelinux/rsyncdeploystep.h
+++ b/src/plugins/remotelinux/rsyncdeploystep.h
@@ -51,12 +51,15 @@ public:
static Core::Id stepId();
static QString displayName();
- static RsyncCommandLine rsyncCommand(const QSsh::SshConnection &sshConnection);
+ static QString defaultFlags();
+ static RsyncCommandLine rsyncCommand(const QSsh::SshConnection &sshConnection,
+ const QString &flags);
private:
AbstractRemoteLinuxDeployService *deployService() const override;
+ void doRun() override;
- bool initInternal(QString *error = nullptr) override;
+ CheckResult initInternal() override;
class RsyncDeployStepPrivate;
RsyncDeployStepPrivate * const d;