1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-06 06:26:46 +00:00

feat(worker): ZFS support: isolate mirrors in zfs datasets

这个提交包含在:
bigeagle
2016-12-05 00:44:55 +08:00
父节点 96f9db8bb8
当前提交 86153c59e3
共有 4 个文件被更改,包括 69 次插入3 次删除

查看文件

@@ -37,6 +37,7 @@ type Config struct {
Manager managerConfig `toml:"manager"`
Server serverConfig `toml:"server"`
Cgroup cgroupConfig `toml:"cgroup"`
ZFS zfsConfig `toml:"zfs"`
Include includeConfig `toml:"include"`
Mirrors []mirrorConfig `toml:"mirrors"`
}
@@ -72,6 +73,11 @@ type cgroupConfig struct {
Group string `toml:"group"`
}
type zfsConfig struct {
Enable bool `toml:"enable"`
Zpool string `toml:"zpool"`
}
type includeConfig struct {
IncludeMirrors string `toml:"include_mirrors"`
}