mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
10.05.2019 73c2ee9cc328406d0952161846fffc213e2a36b1
copyFrom: rsh added.
1 files modified
5 ■■■■■ changed files
borgbutler-core/src/main/java/de/micromata/borgbutler/config/BorgRepoConfig.java 5 ●●●●● patch | view | raw | blame | history
borgbutler-core/src/main/java/de/micromata/borgbutler/config/BorgRepoConfig.java
@@ -52,10 +52,11 @@
        list.add(variable + "=" + value);
    }
   public void copyFrom(BorgRepoConfig other) {
    public void copyFrom(BorgRepoConfig other) {
        this.displayName = other.displayName;
        this.repo = other.repo;
        this.rsh = other.rsh;
        this.passphrase = other.passphrase;
        this.passwordCommand = other.passwordCommand;
   }
    }
}