Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jul 2022 14:09:26 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: effaa7a6d2a9 - stable/13 - rc: Fix quoting in the zpoolreguid script
Message-ID:  <202207191409.26JE9QpI051989@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj:

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

commit effaa7a6d2a9488ac1f17f2bc5f455185c925438
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-05-31 14:51:28 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-07-19 13:49:49 +0000

    rc: Fix quoting in the zpoolreguid script
    
    Reported by:    0mp
    Fixes:          227caacc918a ("rc: Add a zpoolreguid rc.d script")
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit 89e58b955cf5d2187af5f2460d11b64f4d229c8a)
---
 libexec/rc/rc.d/zpoolreguid | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/rc/rc.d/zpoolreguid b/libexec/rc/rc.d/zpoolreguid
index 83c703d5d6c4..77ecac13ad5a 100755
--- a/libexec/rc/rc.d/zpoolreguid
+++ b/libexec/rc/rc.d/zpoolreguid
@@ -16,7 +16,7 @@ zpoolreguid_start()
 {
 	local pool
 
-	for pool in "${zpool_reguid}"; do
+	for pool in ${zpool_reguid}; do
 		zpool reguid $pool
 	done
 }



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