Due a typo or maybe a cut-n-pasteo in the Makefile, "make install" always overwrites an installed corosync.conf
The attached patch fixes this. -- Chrissie
Index: Makefile =================================================================== --- Makefile (revision 1717) +++ Makefile (working copy) @@ -184,7 +184,7 @@ install -m 755 $(builddir)tools/corosync-cfgtool $(DESTDIR)$(SBINDIR) install -m 755 $(builddir)tools/corosync-keygen $(DESTDIR)$(SBINDIR) - if [ ! -f $(DESTDIR)$(ETCDIR)/penais.conf ] ; then \ + if [ ! -f $(DESTDIR)$(ETCDIR)/corosync.conf ] ; then \ install -m 644 $(srcdir)conf/corosync.conf $(DESTDIR)$(ETCDIR) ; \ fi
_______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
