* [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync/files: corosync.initd
@ 2010-03-23 21:51 Doug Goldstein (cardoe)
0 siblings, 0 replies; 4+ messages in thread
From: Doug Goldstein (cardoe) @ 2010-03-23 21:51 UTC (permalink / raw
To: gentoo-commits
cardoe 10/03/23 21:51:15
Added: corosync.initd
Log:
add initial version of corosync for testing with clvm
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.1 sys-cluster/corosync/files/corosync.initd
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.1&content-type=text/plain
Index: corosync.initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2010 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.1 2010/03/23 21:51:15 cardoe Exp $
depend() {
need net
use syslog
}
start() {
ebegin "Starting Corosync Cluster Engine"
start-stop-daemon --start -q --exec /usr/sbin/corosync \
--pidfile /var/run/corosync.pid --make-pidfile --background \
-- -f
eend $?
}
stop() {
ebegin "Stopping Corosync Cluster Engine"
start-stop-daemon --stop -q --pidfile /var/run/corosync.pid
eend $?
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync/files: corosync.initd
@ 2010-11-17 7:07 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2010-11-17 7:07 UTC (permalink / raw
To: gentoo-commits
xarthisius 10/11/17 07:07:03
Modified: corosync.initd
Log:
Use logger instead of syslog wrt #345781. Thanks to Laurento Frittella (mrfree) for the report.
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.2 sys-cluster/corosync/files/corosync.initd
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?r1=1.1&r2=1.2
Index: corosync.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- corosync.initd 23 Mar 2010 21:51:15 -0000 1.1
+++ corosync.initd 17 Nov 2010 07:07:03 -0000 1.2
@@ -1,11 +1,11 @@
#!/sbin/runscript
# Copyright 1999-2010 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.1 2010/03/23 21:51:15 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v 1.2 2010/11/17 07:07:03 xarthisius Exp $
depend() {
need net
- use syslog
+ use logger
}
start() {
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync/files: corosync.initd
@ 2014-12-02 14:55 Alexys Jacob (ultrabug)
0 siblings, 0 replies; 4+ messages in thread
From: Alexys Jacob (ultrabug) @ 2014-12-02 14:55 UTC (permalink / raw
To: gentoo-commits
ultrabug 14/12/02 14:55:49
Modified: corosync.initd
Log:
fix #488736
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Revision Changes Path
1.3 sys-cluster/corosync/files/corosync.initd
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?r1=1.2&r2=1.3
Index: corosync.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- corosync.initd 17 Nov 2010 07:07:03 -0000 1.2
+++ corosync.initd 2 Dec 2014 14:55:49 -0000 1.3
@@ -1,7 +1,7 @@
#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
+# 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.2 2010/11/17 07:07:03 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v 1.3 2014/12/02 14:55:49 ultrabug Exp $
depend() {
need net
@@ -9,6 +9,7 @@
}
start() {
+ configtest || return 1
ebegin "Starting Corosync Cluster Engine"
start-stop-daemon --start -q --exec /usr/sbin/corosync \
--pidfile /var/run/corosync.pid --make-pidfile --background \
@@ -21,3 +22,9 @@
start-stop-daemon --stop -q --pidfile /var/run/corosync.pid
eend $?
}
+
+configtest() {
+ ebegin "Checking corosync configuration"
+ test -f /etc/corosync/corosync.confs
+ eend $? "failed, please create the corosync configuration file"
+}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync/files: corosync.initd
@ 2014-12-30 11:10 Alexys Jacob (ultrabug)
0 siblings, 0 replies; 4+ messages in thread
From: Alexys Jacob (ultrabug) @ 2014-12-30 11:10 UTC (permalink / raw
To: gentoo-commits
ultrabug 14/12/30 11:10:14
Modified: corosync.initd
Log:
fix typo in initd thx to Florian Tham
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Revision Changes Path
1.4 sys-cluster/corosync/files/corosync.initd
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/corosync/files/corosync.initd?r1=1.3&r2=1.4
Index: corosync.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/corosync/files/corosync.initd,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- corosync.initd 2 Dec 2014 14:55:49 -0000 1.3
+++ corosync.initd 30 Dec 2014 11:10:14 -0000 1.4
@@ -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 @@
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"
}
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-12-30 11:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-30 11:10 [gentoo-commits] gentoo-x86 commit in sys-cluster/corosync/files: corosync.initd Alexys Jacob (ultrabug)
-- strict thread matches above, loose matches on Subject: below --
2014-12-02 14:55 Alexys Jacob (ultrabug)
2010-11-17 7:07 Kacper Kowalik (xarthisius)
2010-03-23 21:51 Doug Goldstein (cardoe)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox