diff --git a/doc/json_schema.json b/doc/json_schema.json index c7786dcea..9829f034d 100644 --- a/doc/json_schema.json +++ b/doc/json_schema.json @@ -820,7 +820,8 @@ "weather", "wm", "wifi", - "wmtheme" + "wmtheme", + "zpool" ] }, { @@ -993,6 +994,10 @@ { "const": "wmtheme", "description": "Print current theme of window manager" + }, + { + "const": "zpool", + "description": "Print ZFS storage pools" } ] }, diff --git a/src/modules/zpool/zpool.c b/src/modules/zpool/zpool.c index e21112362..6a9b8780f 100644 --- a/src/modules/zpool/zpool.c +++ b/src/modules/zpool/zpool.c @@ -196,7 +196,7 @@ void ffInitZpoolOptions(FFZpoolOptions* options) ffOptionInitModuleBaseInfo( &options->moduleInfo, FF_ZPOOL_MODULE_NAME, - "Print zfs pools", + "Print ZFS storage pools", ffParseZpoolCommandOptions, ffParseZpoolJsonObject, ffPrintZpool,