Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/slurm/files/
Date: Sun, 03 Jul 2011 22:21:17
Message-Id: 72096bf1554381d5c28b58d74da2205399c5ac64.alexxy@gentoo
1 commit: 72096bf1554381d5c28b58d74da2205399c5ac64
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 22:20:42 2011 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 22:20:42 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=72096bf1
7
8 [slurm] one more update to init.d
9
10 (Portage version: 2.2.0_alpha43/git/Linux x86_64, signed Manifest commit with key F82F92E6)
11
12 ---
13 sys-cluster/slurm/files/slurmctld.initd | 2 +-
14 sys-cluster/slurm/files/slurmd.initd | 2 +-
15 sys-cluster/slurm/files/slurmdbd.initd | 2 +-
16 3 files changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/sys-cluster/slurm/files/slurmctld.initd b/sys-cluster/slurm/files/slurmctld.initd
19 index 8b4e501..2e4c0fc 100644
20 --- a/sys-cluster/slurm/files/slurmctld.initd
21 +++ b/sys-cluster/slurm/files/slurmctld.initd
22 @@ -9,7 +9,7 @@ opts="reload"
23
24 depend() {
25 local _need="net"
26 - [ ${SLURM_USE_MUNGE} -ne 0 ] && _need="${_need} munged"
27 + [[ ${SLURM_USE_MUNGE} -ne 0 ]] && _need="${_need} munged"
28 after logger
29 need ${_need}
30 }
31
32 diff --git a/sys-cluster/slurm/files/slurmd.initd b/sys-cluster/slurm/files/slurmd.initd
33 index 07312d5..6964f93 100644
34 --- a/sys-cluster/slurm/files/slurmd.initd
35 +++ b/sys-cluster/slurm/files/slurmd.initd
36 @@ -9,7 +9,7 @@ opts="reload"
37
38 depend() {
39 local _need="net"
40 - [ ${SLURM_USE_MUNGE} -ne 0 ] && _need="${_need} munged"
41 + [[ ${SLURM_USE_MUNGE} -ne 0 ]] && _need="${_need} munged"
42 after logger
43 need ${_need}
44 }
45
46 diff --git a/sys-cluster/slurm/files/slurmdbd.initd b/sys-cluster/slurm/files/slurmdbd.initd
47 index a8b7bb9..a45a785 100644
48 --- a/sys-cluster/slurm/files/slurmdbd.initd
49 +++ b/sys-cluster/slurm/files/slurmdbd.initd
50 @@ -9,7 +9,7 @@ opts="reload"
51
52 depend() {
53 local _need="net"
54 - [ ${SLURM_USE_MUNGE} -ne 0 ] && _need="${_need} munged"
55 + [[ ${SLURM_USE_MUNGE} -ne 0 ]] && _need="${_need} munged"
56 after logger
57 need ${_need}
58 }