Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/syslog-ng/files/3.12/
Date: Mon, 04 Dec 2017 08:35:09
Message-Id: 1512376487.73eb9782813b4e604f66d4334d1f73e97c0f9aa9.monsieurp@gentoo
1 commit: 73eb9782813b4e604f66d4334d1f73e97c0f9aa9
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 4 08:34:47 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 4 08:34:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73eb9782
7
8 app-admin/syslog-ng: remove bashism.
9
10 Bug: https://bugs.gentoo.org/639672
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 app-admin/syslog-ng/files/3.12/syslog-ng.rc | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/app-admin/syslog-ng/files/3.12/syslog-ng.rc b/app-admin/syslog-ng/files/3.12/syslog-ng.rc
17 index 50add135378..abc652a4df6 100644
18 --- a/app-admin/syslog-ng/files/3.12/syslog-ng.rc
19 +++ b/app-admin/syslog-ng/files/3.12/syslog-ng.rc
20 @@ -46,7 +46,7 @@ start_pre() {
21 }
22
23 stop_pre() {
24 - [[ "$RC_CMD" == "restart" ]] && sleep 1
25 + [ "$RC_CMD" = "restart" ] && sleep 1
26 return 0
27 }