aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/zpool
diff options
context:
space:
mode:
authorRyan Moeller <[email protected]>2020-08-27 00:43:06 -0400
committerGitHub <[email protected]>2020-08-26 21:43:06 -0700
commita2f944a140dc4db1f515d748320bdca01b4dc295 (patch)
tree0e565745a39b72abaf2c33b8fdeaeaf1b53fb2c4 /cmd/zpool
parent03f5d2fd6a5bd74cdb15ab0499e28057d9fe48cd (diff)
zpool: Change base URL for ZFS messages to openzfs-docs
Reviewed-by: George Melikov <[email protected]> Reviewed-by: Kjeld Schouten <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ryan Moeller <[email protected]> Closes #10820
Diffstat (limited to 'cmd/zpool')
-rw-r--r--cmd/zpool/zpool_main.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c
index f3756a5d9..adbb78a8e 100644
--- a/cmd/zpool/zpool_main.c
+++ b/cmd/zpool/zpool_main.c
@@ -2816,7 +2816,8 @@ show_import(nvlist_t *config)
if (msgid != NULL) {
(void) printf(gettext(
- " see: https://zfsonlinux.org/msg/%s\n"), msgid);
+ " see: https://openzfs.github.io/openzfs-docs/msg/%s\n"),
+ msgid);
}
(void) printf(gettext(" config:\n\n"));
@@ -7804,7 +7805,7 @@ print_dedup_stats(nvlist_t *config)
* pool: tank
* status: DEGRADED
* reason: One or more devices ...
- * see: https://zfsonlinux.org/msg/ZFS-xxxx-01
+ * see: https://openzfs.github.io/openzfs-docs/msg/ZFS-xxxx-01
* config:
* mirror DEGRADED
* c1t0d0 OK
@@ -8193,7 +8194,9 @@ status_callback(zpool_handle_t *zhp, void *data)
if (msgid != NULL) {
printf(" ");
printf_color(ANSI_BOLD, gettext("see:"));
- printf(gettext(" https://zfsonlinux.org/msg/%s\n"), msgid);
+ printf(gettext(
+ " https://openzfs.github.io/openzfs-docs/msg/%s\n"),
+ msgid);
}
if (config != NULL) {