-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Attempting to run duplicacy-util on Windows Server 2012. I consistently get the following:
PS C:\users\daniel> duplicacy-util -f serverfolders 19:21:47 Using global config: C:\Users\daniel\.duplicacy-util\duplicacy-util.yaml Error: missing mandatory check field: 2.storage
I have also run the command explicitly providing the -sd flag, with the same result. The -v and -d flags provide no further information.
The local config file is in the same directory as the global one, and is named serverfolders.yaml. It contains:
repository: D:/ServerFolders
storage:
- name: usbdrive
vss: true
vss-timeout: 360
copy:
- from: usbdrive
to: dreamobjects
threads: 20
prune:
- storage: usbdrive
keep: "0:365 30:180 7:30 1:7"
- storage: dreamobjects
keep: "0:365 30:180 7:30 1:7"
check:
- storage: usbdrive
all: true
- storage: dreamobjects
- all: true
I have tried many variations: repository name (serverfolders), repository location (D:\ServerFolders), storage name (usbdrive), storage location (h:\duplicacy_backup), etc.
The repository has been initialized to use a directory on an external hard drive as storage, and to copy to cloud storage. I have successfully run the backup and copy operations directly with duplicacy several times, but I can't get duplicacy-util started.
Have I misunderstood something about the configuration options?