svn commit: r533780 - in head/sysutils/zetaback: . files
Cy Schubert
cy at FreeBSD.org
Sun May 3 13:28:42 UTC 2020
Author: cy
Date: Sun May 3 13:28:41 2020
New Revision: 533780
URL: https://svnweb.freebsd.org/changeset/ports/533780
Log:
Fix typos.
PR: 246132
Submitted by: Armin Gruner <ailto:ag-freebsd at muc.de>
MFH: 2020Q2
Modified:
head/sysutils/zetaback/Makefile (contents, props changed)
head/sysutils/zetaback/files/opt-compression.in
Modified: head/sysutils/zetaback/Makefile
==============================================================================
--- head/sysutils/zetaback/Makefile Sun May 3 13:22:50 2020 (r533779)
+++ head/sysutils/zetaback/Makefile Sun May 3 13:28:41 2020 (r533780)
@@ -15,7 +15,7 @@ LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
OPTIONS_DEFINE= LOCAL BETTER_COMPRESSION
-LOCAL_DESC= Avoid ssh for localhoost backup
+LOCAL_DESC= Avoid ssh for localhost backup
BETTER_COMPRESSION_DESC= Allow different compressions for snapshots
LOCAL_EXTRA_PATCHES= ${PATCHDIR}/opt-localhost.in
Modified: head/sysutils/zetaback/files/opt-compression.in
==============================================================================
--- head/sysutils/zetaback/files/opt-compression.in Sun May 3 13:22:50 2020 (r533779)
+++ head/sysutils/zetaback/files/opt-compression.in Sun May 3 13:28:41 2020 (r533780)
@@ -26,7 +26,7 @@
+ my $cp = config_get($host, 'compressionprogram');
+ if ($cp ne "xz" && $cp ne "bzip2" && $cp ne "gzip" && $cp ne "") {
+ die "zfs_full_backup: unsupported compression program specified\n";
-+ } else ($cp eq "") {
++ } elsif ($cp eq "") {
+ $cp = "gzip";
+ my $cl = 1;
+ } else {
More information about the svn-ports-all
mailing list