From fd1e7d5b3318c6358058e1c3c1fb8b770ca92b0a Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Tue, 29 Aug 2023 15:33:49 +0200 Subject: [PATCH] fix --- zfs_autobackup/ZfsAutoverify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfs_autobackup/ZfsAutoverify.py b/zfs_autobackup/ZfsAutoverify.py index 993acda..e2cfc4b 100644 --- a/zfs_autobackup/ZfsAutoverify.py +++ b/zfs_autobackup/ZfsAutoverify.py @@ -6,7 +6,6 @@ from .ZfsAuto import ZfsAuto from .ZfsNode import ZfsNode import sys -raise("need to be rewritten to use zfs-check") # # try to be as unix compatible as possible, while still having decent performance # def compare_trees_find(source_node, source_path, target_node, target_path): @@ -307,6 +306,7 @@ class ZfsAutoverify(ZfsAuto): def cli(): import sys + raise(Exception("This program is incomplete, dont use it yet.")) signal(SIGPIPE, sigpipe_handler) failed = ZfsAutoverify(sys.argv[1:], False).run() sys.exit(min(failed,255))