├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── examples ├── laptop.cfg ├── nas.cfg └── remotenas.cfg ├── scripts ├── clean.py ├── helper.py ├── manager.py └── zfs.py ├── system └── zfs-snap-manager.service └── tools └── distribute.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/README.md -------------------------------------------------------------------------------- /examples/laptop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/examples/laptop.cfg -------------------------------------------------------------------------------- /examples/nas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/examples/nas.cfg -------------------------------------------------------------------------------- /examples/remotenas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/examples/remotenas.cfg -------------------------------------------------------------------------------- /scripts/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/scripts/clean.py -------------------------------------------------------------------------------- /scripts/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/scripts/helper.py -------------------------------------------------------------------------------- /scripts/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/scripts/manager.py -------------------------------------------------------------------------------- /scripts/zfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/scripts/zfs.py -------------------------------------------------------------------------------- /system/zfs-snap-manager.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/system/zfs-snap-manager.service -------------------------------------------------------------------------------- /tools/distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khenderick/zfs-snap-manager/HEAD/tools/distribute.py --------------------------------------------------------------------------------