diff options
author | Alexys Jacob <ultrabug@gentoo.org> | 2014-12-30 11:10:14 +0000 |
---|---|---|
committer | Alexys Jacob <ultrabug@gentoo.org> | 2014-12-30 11:10:14 +0000 |
commit | c41b3dd43d918bb3ce1f37e8c570e4d398ef3f34 (patch) | |
tree | 2c83331b1cbf7d5c16fc855f72553f62eb14a5da /sys-cluster/corosync | |
parent | Fix linking with postgresql (diff) | |
download | gentoo-2-c41b3dd43d918bb3ce1f37e8c570e4d398ef3f34.tar.gz gentoo-2-c41b3dd43d918bb3ce1f37e8c570e4d398ef3f34.tar.bz2 gentoo-2-c41b3dd43d918bb3ce1f37e8c570e4d398ef3f34.zip |
fix typo in initd thx to Florian Tham
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Diffstat (limited to 'sys-cluster/corosync')
-rw-r--r-- | sys-cluster/corosync/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/corosync/files/corosync.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-cluster/corosync/ChangeLog b/sys-cluster/corosync/ChangeLog index 789987636376..31121645bbd0 100644 --- a/sys-cluster/corosync/ChangeLog +++ b/sys-cluster/corosync/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/corosync # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.33 2014/12/02 14:55:49 ultrabug Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/ChangeLog,v 1.34 2014/12/30 11:10:14 ultrabug Exp $ + + 30 Dec 2014; Ultrabug <ultrabug@gentoo.org> files/corosync.initd: + fix typo in initd thx to Florian Tham 02 Dec 2014; Ultrabug <ultrabug@gentoo.org> files/corosync.initd: add config detection to init script fix #488736 diff --git a/sys-cluster/corosync/files/corosync.initd b/sys-cluster/corosync/files/corosync.initd index 42507bebca77..4c5591442786 100644 --- a/sys-cluster/corosync/files/corosync.initd +++ b/sys-cluster/corosync/files/corosync.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v 1.3 2014/12/02 14:55:49 ultrabug Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v 1.4 2014/12/30 11:10:14 ultrabug Exp $ depend() { need net @@ -25,6 +25,6 @@ stop() { configtest() { ebegin "Checking corosync configuration" - test -f /etc/corosync/corosync.confs + test -f /etc/corosync/corosync.conf eend $? "failed, please create the corosync configuration file" } |