From 95f97111dd27f32dfcb461c9dd6890aa8d1355ed Mon Sep 17 00:00:00 2001 From: parazyd Date: Mon, 8 Feb 2021 11:29:40 +0100 Subject: [PATCH] contrib/init: (OpenRC) quote some unquoted variables. --- contrib/init/bitcoind.openrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/init/bitcoind.openrc b/contrib/init/bitcoind.openrc index 876d6d5893a..013a1a60702 100644 --- a/contrib/init/bitcoind.openrc +++ b/contrib/init/bitcoind.openrc @@ -60,9 +60,9 @@ start_pre() { "${BITCOIND_PIDDIR}" checkpath -f \ - -o ${BITCOIND_USER}:${BITCOIND_GROUP} \ + -o "${BITCOIND_USER}:${BITCOIND_GROUP}" \ -m 0660 \ - ${BITCOIND_CONFIGFILE} + "${BITCOIND_CONFIGFILE}" checkconfig || return 1 }