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))