git: 89e58b955cf5 - main - rc: Fix quoting in the zpoolreguid script
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 May 2022 14:54:01 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=89e58b955cf5d2187af5f2460d11b64f4d229c8a commit 89e58b955cf5d2187af5f2460d11b64f4d229c8a Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-05-31 14:51:28 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-05-31 14:51:28 +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 --- 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 }