summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRolf Eike Beer <eike@sf-mail.de>2020-01-17 21:35:40 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2020-01-17 22:16:02 +0000
commit1b21dc0a174978c6d7a791081e9b7873d1b4b826 (patch)
tree43a78e76e1399d0ed13b162cd18b659f871d736e /eclass
parentdev-ml/dune: version bump (diff)
downloadgentoo-1b21dc0a174978c6d7a791081e9b7873d1b4b826.tar.gz
gentoo-1b21dc0a174978c6d7a791081e9b7873d1b4b826.tar.bz2
gentoo-1b21dc0a174978c6d7a791081e9b7873d1b4b826.zip
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 <eike@sf-mail.de> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/qmail.eclass4
1 files 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() {