Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Feb 2023 21:39:44 GMT
From:      Poul-Henning Kamp <phk@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 996606792ff9 - main - Add deprecation notice to the gbde(8) program, scheduled to be removed in FreeBSD 15.0.
Message-ID:  <202302282139.31SLdiHR029785@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by phk:

URL: https://cgit.FreeBSD.org/src/commit/?id=996606792ff9cfb2a115b6c6ee3d456afa5047f3

commit 996606792ff9cfb2a115b6c6ee3d456afa5047f3
Author:     Poul-Henning Kamp <phk@FreeBSD.org>
AuthorDate: 2023-02-28 21:39:06 +0000
Commit:     Poul-Henning Kamp <phk@FreeBSD.org>
CommitDate: 2023-02-28 21:39:06 +0000

    Add deprecation notice to the gbde(8) program, scheduled to be removed in FreeBSD 15.0.
---
 sbin/gbde/gbde.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sbin/gbde/gbde.c b/sbin/gbde/gbde.c
index 421242c38c80..8f4c2b1fce53 100644
--- a/sbin/gbde/gbde.c
+++ b/sbin/gbde/gbde.c
@@ -737,6 +737,11 @@ main(int argc, char **argv)
 	struct g_bde_key *gl;
 	struct g_bde_softc sc;
 
+	fprintf(stderr, "GBDE disk-encryption is deprecated,\n");
+	fprintf(stderr, "and will be removed in FreeBSD 15.0\n");
+	fprintf(stderr, "(continuing in 5 seconds)\n");
+	sleep(5);
+
 	if (argc < 3)
 		usage();
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302282139.31SLdiHR029785>