aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2020-01-13 16:43:59 -0800
committerGitHub <[email protected]>2020-01-13 16:43:59 -0800
commite458fcca7516a0ceac7aaecc4aacfef1114eb216 (patch)
tree593a82c552e798a047384b032fe3c4e6fbc45e92
parenta4c3e3c74fe1f3cde5df0322f77038fc343163e5 (diff)
Change http://zfsonlinux.org links to https://zfsonlinux.org
Update the project website links contained in to repository to reference the secure https://zfsonlinux.org address. Reviewed-By: Richard Laager <[email protected]> Reviewed-by: George Melikov <[email protected]> Reviewed-by: Garrett Fields <[email protected]> Reviewed-by: Kjeld Schouten <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #9837
-rw-r--r--README.md6
-rw-r--r--cmd/zpool/zpool_main.c11
-rwxr-xr-xcopy-builtin2
-rw-r--r--include/sys/fs/zfs.h2
-rw-r--r--lib/libzfs/libzfs.pc.in2
-rw-r--r--lib/libzfs/libzfs_core.pc.in2
-rw-r--r--lib/libzfs/libzfs_sendrecv.c2
-rw-r--r--man/man8/zed.8.in2
-rw-r--r--module/os/linux/spl/README.md2
-rw-r--r--rpm/generic/zfs-dkms.spec.in2
-rw-r--r--rpm/generic/zfs-kmod.spec.in2
-rw-r--r--rpm/generic/zfs.spec.in2
-rw-r--r--rpm/redhat/zfs-kmod.spec.in2
13 files changed, 20 insertions, 19 deletions
diff --git a/README.md b/README.md
index 59d167f8e..150ba0f2c 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-![img](http://zfsonlinux.org/images/zfs-linux.png)
+![img](https://zfsonlinux.org/images/zfs-linux.png)
ZFS on Linux is an advanced file system and volume manager which was originally
developed for Solaris and is now maintained by the OpenZFS community.
@@ -8,7 +8,7 @@ developed for Solaris and is now maintained by the OpenZFS community.
# Official Resources
- * [Site](http://zfsonlinux.org)
+ * [Site](https://zfsonlinux.org)
* [Wiki](https://github.com/zfsonlinux/zfs/wiki)
* [Mailing lists](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists)
* [OpenZFS site](http://open-zfs.org/)
@@ -16,7 +16,7 @@ developed for Solaris and is now maintained by the OpenZFS community.
# Installation
Full documentation for installing ZoL on your favorite Linux distribution can
-be found at [our site](http://zfsonlinux.org/).
+be found at [our site](https://zfsonlinux.org/).
# Contribute & Develop
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c
index 77c826ba8..ae5e8a370 100644
--- a/cmd/zpool/zpool_main.c
+++ b/cmd/zpool/zpool_main.c
@@ -2791,9 +2791,10 @@ show_import(nvlist_t *config)
"the '-f' flag.\n"));
}
- if (msgid != NULL)
- (void) printf(gettext(" see: http://zfsonlinux.org/msg/%s\n"),
- msgid);
+ if (msgid != NULL) {
+ (void) printf(gettext(
+ " see: https://zfsonlinux.org/msg/%s\n"), msgid);
+ }
(void) printf(gettext(" config:\n\n"));
@@ -7531,7 +7532,7 @@ print_dedup_stats(nvlist_t *config)
* pool: tank
* status: DEGRADED
* reason: One or more devices ...
- * see: http://zfsonlinux.org/msg/ZFS-xxxx-01
+ * see: https://zfsonlinux.org/msg/ZFS-xxxx-01
* config:
* mirror DEGRADED
* c1t0d0 OK
@@ -7900,7 +7901,7 @@ status_callback(zpool_handle_t *zhp, void *data)
if (msgid != NULL) {
printf(" ");
printf_color(ANSI_BOLD, gettext("see:"));
- printf(gettext(" http://zfsonlinux.org/msg/%s\n"), msgid);
+ printf(gettext(" https://zfsonlinux.org/msg/%s\n"), msgid);
}
if (config != NULL) {
diff --git a/copy-builtin b/copy-builtin
index ee3b081ca..700e6f4f0 100755
--- a/copy-builtin
+++ b/copy-builtin
@@ -58,7 +58,7 @@ config ZFS
help
This is the ZFS filesystem from the ZFS On Linux project.
- See http://zfsonlinux.org/
+ See https://zfsonlinux.org/
To compile this file system support as a module, choose M here.
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h
index 1474e1f04..2f35563bc 100644
--- a/include/sys/fs/zfs.h
+++ b/include/sys/fs/zfs.h
@@ -987,7 +987,7 @@ typedef enum dsl_scan_state {
} dsl_scan_state_t;
/*
- * Errata described by http://zfsonlinux.org/msg/ZFS-8000-ER. The ordering
+ * Errata described by https://zfsonlinux.org/msg/ZFS-8000-ER. The ordering
* of this enum must be maintained to ensure the errata identifiers map to
* the correct documentation. New errata may only be appended to the list
* and must contain corresponding documentation at the above link.
diff --git a/lib/libzfs/libzfs.pc.in b/lib/libzfs/libzfs.pc.in
index 1122401a6..d09e19fb0 100644
--- a/lib/libzfs/libzfs.pc.in
+++ b/lib/libzfs/libzfs.pc.in
@@ -6,7 +6,7 @@ includedir=@includedir@
Name: libzfs
Description: LibZFS library
Version: @VERSION@
-URL: http://zfsonlinux.org
+URL: https://zfsonlinux.org
Requires: libzfs_core
Cflags: -I${includedir}/libzfs -I${includedir}/libspl
Libs: -L${libdir} -lzfs -lnvpair
diff --git a/lib/libzfs/libzfs_core.pc.in b/lib/libzfs/libzfs_core.pc.in
index 2b6a86bfa..9f5c6462d 100644
--- a/lib/libzfs/libzfs_core.pc.in
+++ b/lib/libzfs/libzfs_core.pc.in
@@ -6,6 +6,6 @@ includedir=@includedir@
Name: libzfs_core
Description: LibZFS core library
Version: @VERSION@
-URL: http://zfsonlinux.org
+URL: https://zfsonlinux.org
Cflags: -I${includedir}/libzfs -I${includedir}/libspl
Libs: -L${libdir} -lzfs_core
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c
index de3bfdbf4..6179d4dda 100644
--- a/lib/libzfs/libzfs_sendrecv.c
+++ b/lib/libzfs/libzfs_sendrecv.c
@@ -5220,7 +5220,7 @@ zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap,
case ZFS_ERR_FROM_IVSET_GUID_MISSING:
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
"IV set guid missing. See errata %u at "
- "http://zfsonlinux.org/msg/ZFS-8000-ER."),
+ "https://zfsonlinux.org/msg/ZFS-8000-ER."),
ZPOOL_ERRATA_ZOL_8308_ENCRYPTION);
(void) zfs_error(hdl, EZFS_BADSTREAM, errbuf);
break;
diff --git a/man/man8/zed.8.in b/man/man8/zed.8.in
index eaaf7aa6b..2db223a68 100644
--- a/man/man8/zed.8.in
+++ b/man/man8/zed.8.in
@@ -1,6 +1,6 @@
.\"
.\" This file is part of the ZFS Event Daemon (ZED)
-.\" for ZFS on Linux (ZoL) <http://zfsonlinux.org/>.
+.\" for ZFS on Linux (ZoL) <https://zfsonlinux.org/>.
.\" Developed at Lawrence Livermore National Laboratory (LLNL-CODE-403049).
.\" Copyright (C) 2013-2014 Lawrence Livermore National Security, LLC.
.\" Refer to the ZoL git commit log for authoritative copyright attribution.
diff --git a/module/os/linux/spl/README.md b/module/os/linux/spl/README.md
index 57f635aed..51166425f 100644
--- a/module/os/linux/spl/README.md
+++ b/module/os/linux/spl/README.md
@@ -1,5 +1,5 @@
The Solaris Porting Layer, SPL, is a Linux kernel module which provides a
-compatibility layer used by the [ZFS on Linux](http://zfsonlinux.org) project.
+compatibility layer used by the [ZFS on Linux](https://zfsonlinux.org) project.
# Installation
diff --git a/rpm/generic/zfs-dkms.spec.in b/rpm/generic/zfs-dkms.spec.in
index d87293686..f849125a4 100644
--- a/rpm/generic/zfs-dkms.spec.in
+++ b/rpm/generic/zfs-dkms.spec.in
@@ -18,7 +18,7 @@ Summary: Kernel module(s) (dkms)
Group: System Environment/Kernel
License: @ZFS_META_LICENSE@
-URL: http://zfsonlinux.org/
+URL: https://zfsonlinux.org/
Source0: %{module}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
diff --git a/rpm/generic/zfs-kmod.spec.in b/rpm/generic/zfs-kmod.spec.in
index 4a8f66231..80b35a05f 100644
--- a/rpm/generic/zfs-kmod.spec.in
+++ b/rpm/generic/zfs-kmod.spec.in
@@ -51,7 +51,7 @@ Summary: Kernel module(s)
Group: System Environment/Kernel
License: @ZFS_META_LICENSE@
-URL: http://zfsonlinux.org/
+URL: https://zfsonlinux.org/
Source0: %{module}-%{version}.tar.gz
Source10: kmodtool
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id} -u -n)
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in
index 545627d4b..704afd781 100644
--- a/rpm/generic/zfs.spec.in
+++ b/rpm/generic/zfs.spec.in
@@ -112,7 +112,7 @@ Summary: Commands to control the kernel modules and libraries
Group: System Environment/Kernel
License: @ZFS_META_LICENSE@
-URL: http://zfsonlinux.org/
+URL: https://zfsonlinux.org/
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: libzpool2 = %{version}
diff --git a/rpm/redhat/zfs-kmod.spec.in b/rpm/redhat/zfs-kmod.spec.in
index f632c4867..3b566c7c5 100644
--- a/rpm/redhat/zfs-kmod.spec.in
+++ b/rpm/redhat/zfs-kmod.spec.in
@@ -11,7 +11,7 @@ Release: @RELEASE@%{?dist}
Summary: Kernel module(s)
Group: System Environment/Kernel
License: @ZFS_META_LICENSE@
-URL: http://zfsonlinux.org/
+URL: https://zfsonlinux.org/
BuildRequires: %kernel_module_package_buildreqs
Source0: @PACKAGE@-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)