├── .github ├── dependabot.yml ├── stale.yml └── workflows │ ├── docker-latest.yml │ ├── shellcheck.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── test └── pool │ ├── abc-123_!"§$%&()[]{}=?`#'*+-_,;.:|<>~@.txt │ └── projects │ └── [2020] some project │ ├── file │ ├── file.txt │ └── mp4.txt ├── testing.sh └── zfs-inplace-rebalancing.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/docker-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.github/workflows/docker-latest.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/README.md -------------------------------------------------------------------------------- /test/pool/abc-123_!"§$%&()[]{}=?`#'*+-_,;.:|<>~@.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/pool/projects/[2020] some project/file: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/pool/projects/[2020] some project/file.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/pool/projects/[2020] some project/mp4.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/testing.sh -------------------------------------------------------------------------------- /zfs-inplace-rebalancing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusressel/zfs-inplace-rebalancing/HEAD/zfs-inplace-rebalancing.sh --------------------------------------------------------------------------------