From 9fda294e9b349c14f67848b52379fe1bae22f06f Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 14 Feb 2023 10:18:37 +0100 Subject: [PATCH] zfs: fix wrong command reference in error message zpool is used for the command, so it should also be referred to in the error message. Reported-by: Roland Signed-off-by: Thomas Lamprecht --- proxinstall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxinstall b/proxinstall index f9b67a3..79abc34 100755 --- a/proxinstall +++ b/proxinstall @@ -1979,8 +1979,8 @@ _EOD syscmd("zfs set mountpoint=/ $zfspoolname/ROOT/$zfsrootvolname") == 0 || die "zfs set mountpoint failed\n"; - syscmd("zpool set bootfs=$zfspoolname/ROOT/$zfsrootvolname $zfspoolname") == 0 || - die "zfs set bootfs failed\n"; + syscmd("zpool set bootfs=$zfspoolname/ROOT/$zfsrootvolname $zfspoolname") == 0 || + die "zpool set bootfs failed\n"; syscmd("zpool export $zfspoolname"); } -- 2.39.2