rename root_dataset to root_fs for receiving-side jobs

This commit is contained in:
Christian Schwarz
2018-10-11 18:00:23 +02:00
parent 0c3a694470
commit 125b561df3
9 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -44,13 +44,13 @@ type PushJob struct {
type PullJob struct {
ActiveJob `yaml:",inline"`
RootDataset string `yaml:"root_dataset"`
Interval time.Duration `yaml:"interval,positive"`
RootFS string `yaml:"root_fs"`
Interval time.Duration `yaml:"interval,positive"`
}
type SinkJob struct {
PassiveJob `yaml:",inline"`
RootDataset string `yaml:"root_dataset"`
RootFS string `yaml:"root_fs"`
}
type SourceJob struct {