From 1b21dc0a174978c6d7a791081e9b7873d1b4b826 Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Fri, 17 Jan 2020 21:35:40 +0100 Subject: qmail.eclass: fix bad variable reference This only worked by accident as it called from a loop with that variable. Signed-off-by: Rolf Eike Beer Signed-off-by: Sergei Trofimovich --- eclass/qmail.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass index 7e33611462be..d3a7ba3ed83f 100644 --- a/eclass/qmail.eclass +++ b/eclass/qmail.eclass @@ -267,9 +267,9 @@ qmail_tcprules_install() { } qmail_supervise_install_one() { - dosupervise ${i} + dosupervise ${1} diropts -o qmaill -g "${GROUP_ROOT}" -m 755 - keepdir /var/log/qmail/${i} + keepdir /var/log/qmail/${1} } qmail_supervise_install() { -- cgit v1.2.3-65-gdbad