diff options
author | Bertrand Jacquin <beber@meleeweb.net> | 2006-04-21 00:22:03 +0200 |
---|---|---|
committer | Bertrand Jacquin <beber@meleeweb.net> | 2006-04-21 00:22:03 +0200 |
commit | 1cc8b3c7c55662a146f739e4b5398f965c1c58d1 (patch) | |
tree | d7377f9d21fcb6984b8045c2f8ec6e558e413940 /net-im/ejabberd | |
parent | hum, add them (diff) | |
download | portage-1cc8b3c7c55662a146f739e4b5398f965c1c58d1.tar.xz |
ejabberd: initd was wrong
Diffstat (limited to 'net-im/ejabberd')
-rw-r--r-- | net-im/ejabberd/files/ejabberd-1.0.0.initd | 2736 |
1 files changed, 52 insertions, 2684 deletions
diff --git a/net-im/ejabberd/files/ejabberd-1.0.0.initd b/net-im/ejabberd/files/ejabberd-1.0.0.initd index 430f156b..d762311d 100644 --- a/net-im/ejabberd/files/ejabberd-1.0.0.initd +++ b/net-im/ejabberd/files/ejabberd-1.0.0.initd @@ -1,2692 +1,60 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> -<html> - <head> - <title>Bug 101708 - ejabberd-1.0.0 (version bump)</title> +#!/sbin/runscript +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +opts="${opts} reload" -<link rel="Top" href="http://bugs.gentoo.org/"> - - - - - - <link rel="Show" title="Dependency Tree" - href="showdependencytree.cgi?id=101708"> - <link rel="Show" title="Dependency Graph" - href="showdependencygraph.cgi?id=101708"> - - - <link rel="Show" title="Bug Activity" - href="show_activity.cgi?id=101708"> - <link rel="Show" title="Printer-Friendly Version" - href="show_bug.cgi?format=multiple&id=101708"> - - - - <script type="text/javascript"> - <!-- - - function initHelp() {} - // --> - </script> - - <link href="skins/standard/global.css" rel="stylesheet" type="text/css"> - <link href="skins/custom/global.css" rel="stylesheet" type="text/css"> - - - - - - - </head> - - - - <body onload="" - class="bugs-gentoo-org bz_bug bz_status_ASSIGNED bz_component_Ebuilds bz_bug_101708"> - - -<div id="banner"> - <p id="banner-name"> - <center><a href="/"><img border=0 src="/skins/custom/gentoo-header.png"></a></center> - <!-- <span>This is Bugzilla</span> - </p> - <p id="banner-version"> - <br> - <a href="http://www.bugzilla.org/"><span>Bugzilla</span></a> - <span>Version 2.20+</span> --> - <p> - <a href="http://www.gentoo.org/">Home</a> | - <a href="http://www.gentoo.org/doc/en/index.xml">Docs</a> | - <a href="http://forums.gentoo.org/">Forums</a> | - <a href="http://www.gentoo.org/main/en/lists.xml">Lists</a> | - <a href="http://bugs.gentoo.org">Bugs</a> | - <a href="http://planet.gentoo.org">Planet</a> | - <a href="http://store.gentoo.org">Store</a> | - <a href="http://www.gentoo.org/news/en/gwn/gwn.xml">GWN</a> | - <a href="http://www.gentoo.org/main/en/where.xml">Get Gentoo!</a> - </p> - <div class="outro"></div> - </div> - -<div id="header"> - <h1>Bugzilla Bug 101708</h1> - - <h2>ejabberd-1.0.0 (version bump)</h2> - - <h3>Last modified: 2006-04-20 15:07:31 PST</h3> -</div> -<i><font color="#777777">First</font></i> - <i><font color="#777777">Last</font></i> - <i><font color="#777777">Prev</font></i> - <i><font color="#777777">Next</font></i> - - <i><font color="#777777">No search results available</font></i> - - <a href="query.cgi">Search page</a> - <a href="enter_bug.cgi">Enter new bug</a> - -<hr> -<!-- jsf: add_archs function --> -<script type="text/javascript"> -<!-- -function add_arches() { - var i; - for(i=0;i<document.changeform.addarches.options.length;i++) { - if(document.changeform.addarches.options[i].selected) { - if(!document.changeform.newcc.value) { - document.changeform.newcc.value = document.changeform.addarches.options[i].value; - } else { - document.changeform.newcc.value = document.changeform.newcc.value + "," + document.changeform.addarches.options[i].value } - // Deselect the item...not necessary - document.changeform.addarches.options[i].selected = false; - } - } +depend() { + use dns + need net + provide jabber-server } ---> -</script> - - - - - <script type="text/javascript"> - <!-- - - /* Outputs a link to call replyToComment(); used to reduce HTML output */ - function addReplyLink(id) { - /* XXX this should really be updated to use the DOM Core's - * createElement, but finding a container isn't trivial */ - document.write('[<a href="#add_comment" onclick="replyToComment(' + - id + ');">reply<' + '/a>]'); - } - - /* Adds the reply text to the `comment' textarea */ - function replyToComment(id) { - /* pre id="comment_name_N" */ - var text_elem = document.getElementById('comment_text_'+id); - var text = getText(text_elem); - - /* make sure we split on all newlines -- IE or Moz use \r and \n - * respectively */ - text = text.split(/\r|\n/); - - var replytext = ""; - for (var i=0; i < text.length; i++) { - replytext += "> " + text[i] + "\n"; - } - - replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; - - - /* <textarea id="comment"> */ - var textarea = document.getElementById('comment'); - textarea.value += replytext; - - textarea.focus(); - } - - if (!Node) { - /* MSIE doesn't define Node, so provide a compatibility array */ - var Node = { - TEXT_NODE: 3, - ENTITY_REFERENCE_NODE: 5 - }; - } - - /* Concatenates all text from element's childNodes. This is used - * instead of innerHTML because we want the actual text (and - * innerText is non-standard) */ - function getText(element) { - var child, text = ""; - for (var i=0; i < element.childNodes.length; i++) { - child = element.childNodes[i]; - var type = child.nodeType; - if (type == Node.TEXT_NODE || type == Node.ENTITY_REFERENCE_NODE) { - text += child.nodeValue; - } else { - /* recurse into nodes of other types */ - text += getText(child); - } - } - return text; - } - - - //--> - </script> - -<form name="changeform" method="post" action="process_bug.cgi"> - - <input type="hidden" name="delta_ts" value="2006-04-20 15:07:31"> - <input type="hidden" name="longdesclength" value="62"> - <input type="hidden" name="id" value="101708"> - - - - <table> - - <tr> - <td valign="top"> - <table cellspacing="1" cellpadding="1"> - - <tr> - <td align="right"> - <b>Bug#:</b> - </td> - <td> - <a href="http://bugs.gentoo.org/show_bug.cgi?id=101708">101708</a> - <label for="alias" title="a name for the bug that can be used in place of its ID number, f.e. when adding it to a list of dependencies"> - <b>alias:</b> - <input id="alias" name="alias" value="" size="20" maxlength="20"> - </label> - </td> - </tr> - - <tr> - <td align="right"> - <b><u>P</u>roduct:</b> - </td><td> - <label for="product" accesskey="p"> - <select name="product" id="product"> - <option value="Admin">Admin - </option> - <option value="Bugzilla">Bugzilla - </option> - <option value="Developer Relations">Developer Relations - </option> - <option value="Doc Other">Doc Other - </option> - <option value="Doc Translations">Doc Translations - </option> - <option value="Documentation">Documentation - </option> - <option value="Gentoo Hosted Projects">Gentoo Hosted Projects - </option> - <option value="Gentoo Infrastructure">Gentoo Infrastructure - </option> - <option value="Gentoo Linux" selected>Gentoo Linux - </option> - <option value="Gentoo Release Media">Gentoo Release Media - </option> - <option value="Gentoo Security">Gentoo Security - </option> - <option value="Gentoo/Alt">Gentoo/Alt - </option> - <option value="Mirrors">Mirrors - </option> - <option value="Portage Development">Portage Development - </option> - <option value="Recruitment">Recruitment - </option> - <option value="Website www.gentoo.org">Website www.gentoo.org - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - - - <tr> - <td align="right"> - <b> - <a href="describecomponents.cgi?product=Gentoo%20Linux"> - Co<u>m</u>ponent</a>: - </b> - </td><td> - <label for="component" accesskey="m"> - <select name="component" id="component"> - <option value="Applications">Applications - </option> - <option value="baselayout">baselayout - </option> - <option value="Core system">Core system - </option> - <option value="Development">Development - </option> - <option value="Ebuilds" selected>Ebuilds - </option> - <option value="Eclasses and Profiles">Eclasses and Profiles - </option> - <option value="Games">Games - </option> - <option value="GCC Porting">GCC Porting - </option> - <option value="GNOME">GNOME - </option> - <option value="Hardened">Hardened - </option> - <option value="KDE">KDE - </option> - <option value="Library">Library - </option> - <option value="Printing">Printing - </option> - <option value="Security">Security - </option> - <option value="Server">Server - </option> - <option value="Unspecified">Unspecified - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - <tr> - <td align="right"> - <b> - <a href="page.cgi?id=fields.html#status">Status</a>: - </b> - </td> - <td>ASSIGNED</td> - </tr> - - <tr> - <td align="right"> - <b> - <a href="page.cgi?id=fields.html#resolution">Resolution</a>: - </b> - </td> - <td> - </td> - </tr> - - <tr> - <td align="right"> - <b> - <a href="page.cgi?id=fields.html#assigned_to">Assigned To</a>: - </b> - </td> - <td>Gentoo net-im Herd <net-im@gentoo.org></td> - </tr> - - </table> - - </td> - <td valign="top"> - - <table cellspacing="1" cellpadding="1"> - - <tr> - <td align="right"> - <b><u>H</u>ardware:</b> - </td><td> - <label for="rep_platform" accesskey="h"> - <select name="rep_platform" id="rep_platform"> - <option value="All" selected>All - </option> - <option value="Other">Other - </option> - <option value="AMD64">AMD64 - </option> - <option value="x86">x86 - </option> - <option value="Alpha">Alpha - </option> - <option value="Sparc">Sparc - </option> - <option value="IA64">IA64 - </option> - <option value="PPC">PPC - </option> - <option value="MIPS">MIPS - </option> - <option value="PPC64">PPC64 - </option> - <option value="HPPA">HPPA - </option> - <option value="s390">s390 - </option> - <option value="sh">sh - </option> - <option value="Sparc64">Sparc64 - </option> - <option value="ARM">ARM - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - <tr> - <td align="right"> - <b><u>O</u>S:</b> - </td><td> - <label for="op_sys" accesskey="o"> - <select name="op_sys" id="op_sys"> - <option value="Other">Other - </option> - <option value="Linux" selected>Linux - </option> - <option value="All">All - </option> - <option value="FreeBSD">FreeBSD - </option> - <option value="OS X">OS X - </option> - <option value="GNU/kFreeBSD">GNU/kFreeBSD - </option> - <option value="NetBSD">NetBSD - </option> - <option value="OpenBSD">OpenBSD - </option> - <option value="DragonFly">DragonFly - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - <tr> - <td align="right"> - <b><u>V</u>ersion:</b> - </td><td> - <label for="version" accesskey="v"> - <select name="version" id="version"> - <option value="1.0">1.0 - </option> - <option value="1.0 RC6 r14">1.0 RC6 r14 - </option> - <option value="1.1a">1.1a - </option> - <option value="1.2">1.2 - </option> - <option value="1.3">1.3 - </option> - <option value="1.4">1.4 - </option> - <option value="1.4_rc1">1.4_rc1 - </option> - <option value="1.4_rc2">1.4_rc2 - </option> - <option value="1.4_rc3">1.4_rc3 - </option> - <option value="1.4_rc4">1.4_rc4 - </option> - <option value="2004.0">2004.0 - </option> - <option value="2004.1">2004.1 - </option> - <option value="2004.2">2004.2 - </option> - <option value="2004.3">2004.3 - </option> - <option value="2005.0">2005.0 - </option> - <option value="2005.1">2005.1 - </option> - <option value="2006.0">2006.0 - </option> - <option value="unspecified" selected>unspecified - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - <tr> - <td align="right"> - <b><a href="page.cgi?id=fields.html#priority">Pr<u>i</u>ority</a>:</b> - </td><td> - <label for="priority" accesskey="i"> - <select name="priority" id="priority"> - <option value="P1">P1 - </option> - <option value="P2" selected>P2 - </option> - <option value="P3">P3 - </option> - <option value="P4">P4 - </option> - <option value="P5">P5 - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - <tr> - <td align="right"> - <b><a href="page.cgi?id=fields.html#bug_severity">S<u>e</u>verity</a>:</b> - </td><td> - <label for="bug_severity" accesskey="e"> - <select name="bug_severity" id="bug_severity"> - <option value="blocker">blocker - </option> - <option value="critical">critical - </option> - <option value="major">major - </option> - <option value="normal">normal - </option> - <option value="minor">minor - </option> - <option value="trivial">trivial - </option> - <option value="enhancement" selected>enhancement - </option> - </select> - </label> - </td> - <td> </td> - </tr> - - - </table> - </td> - - <td valign="top"> - - <table cellpadding="1" cellspacing="1"> - - <tr> - <td align="right"> - <b>Reporter:</b> - </td> - <td> - <a href="mailto:stian@barmen.nu">Stian B. Barmen <stian@barmen.nu></a> - </td> - </tr> - - <tr> - <td align="right" valign="top"> - <b><u>A</u>dd CC:</b> - </td> - <td><input - name="newcc" - value="" accesskey="a" size="30" -> - </td> - </tr> - -<!-- jsf: add archs --> - <tr> - <td align="right" valign="top"> - <b>CC:</b> - </td> - <td valign="top"> - <select name="cc" multiple="multiple" size="5"> - <option value="albert+gentoo-bugzilla@cdr.se">albert+gentoo-bugzilla@cdr.se</option> - <option value="aleander@gmail.com">aleander@gmail.com</option> - <option value="beber.gentoo@gmail.com">beber.gentoo@gmail.com</option> - <option value="catap@catap.ru">catap@catap.ru</option> - <option value="chris@thil.de">chris@thil.de</option> - <option value="creideiki+gentoo-bugzilla@lysator.liu.se">creideiki+gentoo-bugzilla@lysator.liu.se</option> - <option value="gentoo-bugs@pacifica.ch">gentoo-bugs@pacifica.ch</option> - <option value="gentoo.steph@e-bonnell.net">gentoo.steph@e-bonnell.net</option> - <option value="jhknight@gmail.com">jhknight@gmail.com</option> - <option value="lars@strojny.net">lars@strojny.net</option> - <option value="lukas.polivka@gmail.com">lukas.polivka@gmail.com</option> - <option value="max@city.veganet.ru">max@city.veganet.ru</option> - <option value="mg@fork.pl">mg@fork.pl</option> - <option value="pclouds@gentoo.org">pclouds@gentoo.org</option> - <option value="pupeno@pupeno.com">pupeno@pupeno.com</option> - <option value="rockoo@gmail.com">rockoo@gmail.com</option> - <option value="scout.sv@gmail.com">scout.sv@gmail.com</option> - <option value="tacvbo@tacvbo.net">tacvbo@tacvbo.net</option> - <option value="trejkaz@trypticon.org">trejkaz@trypticon.org</option> - </select> - <br> - <input type="checkbox" name="removecc">Remove selected CCs - <br> - </td> - </tr> - - </table> - - </td> - </tr> - - <tr> - <td colspan="2"> - <table cellspacing="1" cellpadding="1"> - - - - - <tr> - <td align="right"> - <b> - <u>U</u>RL: - </b> - </td> - <td colspan="5"> - <input name="bug_file_loc" accesskey="u" - value="" size="60"> - </td> - </tr> - - <tr> - <td align="right"> - <b><u>S</u>ummary:</b> - </td> - <td colspan="5"> - <input name="short_desc" accesskey="s" - value="ejabberd-1.0.0 (version bump)" size="60"> - </td> - </tr> - - <tr> - <td align="right"> - <b>Status <u>W</u>hiteboard:</b> - </td> - <td colspan="5"> - <input name="status_whiteboard" accesskey="w" - value="Will need some fixing to be jabber-base compliant" size="60"> - </td> - </tr> - - <tr> - <td align="right"> - <b> - <a href="describekeywords.cgi"><u>K</u>eywords</a>: - </b> - <td colspan="5"> - <input name="keywords" accesskey="k" - value="" size="60"> - </td> - </tr> - - </table> - </td> - - <td valign="top"> - <table cellspacing="1" cellpadding="1"> - <tr> - <td colspan="2" valign="top"> - </td> - </tr> - </table> - </td> - </tr> - </table> - - - -<br> -<table cellspacing="0" cellpadding="4" border="1"> - <tr> - <th bgcolor="#cccccc" align="left">Attachment</th> - <th bgcolor="#cccccc" align="left">Type</th> - <th bgcolor="#cccccc" align="left">Created</th> - <th bgcolor="#cccccc" align="left">Size</th> - <th bgcolor="#cccccc" align="left">Actions</th> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65393"><span class="bz_obsolete">initial 0.8.9 ebuild.</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:20 PST</td> - <td valign="top">3.19 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65393&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65394"><span class="bz_obsolete">initd startup script</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:21 PST</td> - <td valign="top">1.34 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65394&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65395">inetrc, make ejabberd use srv records</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:23 PST</td> - <td valign="top">36 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65395&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65396"><span class="bz_obsolete">confd</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:24 PST</td> - <td valign="top">777 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65396&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65397"><span class="bz_obsolete">ejabberd (ejabberd internal start script)</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:25 PST</td> - <td valign="top">355 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65397&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=65398"><span class="bz_obsolete">ejabberdctl </span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-08-08 00:26 PST</td> - <td valign="top">199 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=65398&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=67683"><span class="bz_obsolete">New ebuild, include dep for sandbox 1.2.12</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-09-05 07:11 PST</td> - <td valign="top">3.21 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=67683&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=68175">ebuild with some additions</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-09-11 07:21 PST</td> - <td valign="top">3.89 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=68175&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=68176">new ejabberd startup script</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-09-11 07:22 PST</td> - <td valign="top">348 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=68176&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=68177">new ejabberdctl script</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-09-11 07:23 PST</td> - <td valign="top">172 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=68177&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=73368">worked ebiuld</a> - </td> - - <td valign="top">application/octet-stream - </td> - - <td valign="top">2005-11-22 06:05 PST</td> - <td valign="top">3.68 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=73368&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=74865"><span class="bz_obsolete">ejabberd 1.0.0 ebuild</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-12-16 02:17 PST</td> - <td valign="top">3.89 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=74865&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=75310">ejabberd-1.0.0.ebuild alt</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2005-12-22 00:00 PST</td> - <td valign="top">3.14 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=75310&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=77499">ejabberd-1.0.0.ebuild (jabber-base compliant)</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-01-18 21:16 PST</td> - <td valign="top">3.59 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=77499&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=77500">files/ejabberd-1.0.0.initd (jabber-base compliant)</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-01-18 21:17 PST</td> - <td valign="top">1.23 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=77500&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80601"><span class="bz_obsolete">ejabberd-1.0.0.ebuild - jabber-base compliant rev 2</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-02-24 07:03 PST</td> - <td valign="top">4.87 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80601&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80602">files\ejabberd-1.0.0.confd</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-02-24 07:03 PST</td> - <td valign="top">777 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80602&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80892">net-im/ejabberd - revision 3, with muc_log and stats patches</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-02-28 02:32 PST</td> - <td valign="top">5.38 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80892&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80893">files/ejabberd_cfg.patch</a> - </td> - - <td valign="top"> - <i>patch</i> - </td> - - <td valign="top">2006-02-28 02:34 PST</td> - <td valign="top">1.46 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80893&action=edit">Edit</a> - | <a href="attachment.cgi?id=80893&action=diff">Diff</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80894">files/ejabberd_web_admin.erl.statsdx.patch</a> - </td> - - <td valign="top"> - <i>patch</i> - </td> - - <td valign="top">2006-02-28 02:35 PST</td> - <td valign="top">9.07 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80894&action=edit">Edit</a> - | <a href="attachment.cgi?id=80894&action=diff">Diff</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80895">files/muc_log_1.0.0_eightrev.patch</a> - </td> - - <td valign="top"> - <i>patch</i> - </td> - - <td valign="top">2006-02-28 02:36 PST</td> - <td valign="top">22.45 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80895&action=edit">Edit</a> - | <a href="attachment.cgi?id=80895&action=diff">Diff</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80896">files\mod_statsdx.erl</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-02-28 02:37 PST</td> - <td valign="top">22.58 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80896&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=80897">files/mod_stats2file.erl</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-02-28 02:37 PST</td> - <td valign="top">9.97 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=80897&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=81458"><span class="bz_obsolete">ejabberd-1.0.0-r1.ebuild</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-03-05 14:07 PST</td> - <td valign="top">3.22 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=81458&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=81459"><span class="bz_obsolete">ejabberd-1.0.0-r1.confd</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-03-05 14:07 PST</td> - <td valign="top">671 bytes</td> - - - <td valign="top"> - <a href="attachment.cgi?id=81459&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=81460"><span class="bz_obsolete">ejabberd-1.0.0-r1.initd</span></a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-03-05 14:08 PST</td> - <td valign="top">1.23 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=81460&action=edit">Edit</a> - </td> - </tr> - <tr > - <td valign="top"> - <a href="attachment.cgi?id=81533">dev-erl/pgsql-cvs-9999</a> - </td> - - <td valign="top">text/plain - </td> - - <td valign="top">2006-03-06 09:15 PST</td> - <td valign="top">1.04 KB</td> - - - <td valign="top"> - <a href="attachment.cgi?id=81533&action=edit">Edit</a> - </td> - </tr> - - <tr> - <td colspan="4"> - <a href="attachment.cgi?bugid=101708&action=enter">Create a New Attachment</a> (proposed patch, testcase, etc.) - </td> - <td> - <a href="attachment.cgi?bugid=101708&action=viewall">View All</a> - </td> - </tr> -</table> -<br> - - - - <table> - <tr><th align="right">Bug 101708 <u>d</u>epends on:</th> - <td><a href="show_bug.cgi?id=98452" title="ASSIGNED - Global jabber-dirs for all jabber-related stuff">98452</a> - </td> - <td> - <input name="dependson" accesskey="d" - value="98452"> - </td> - <td rowspan="2"> - <a href="showdependencytree.cgi?id=101708">Show - dependency tree</a> - - <br> - <a href="showdependencygraph.cgi?id=101708">Show - dependency graph</a> - </td> - </tr> - - <tr><th align="right">Bug 101708 <u>b</u>locks:</th> - <td><a href="show_bug.cgi?id=104779" title="NEW - [META] changes in directory locations for net-im jabber ebuilds">104779</a> - </td> - <td> - <input name="blocked" accesskey="b" - value="104779"> - </td> - </tr> - </table> - - - - - <br> - <b>Additional <u>C</u>omments: </b> <i>(this is where you put 'emerge --info')</i> - <br> - <a name="add_comment"></a> - <textarea name="comment" id="comment" rows="10" cols="80" - accesskey="c"></textarea> - - <br> - <label for="addselfcc"> - <input type="checkbox" id="addselfcc" name="addselfcc"> - Add to CC list - </label> - <br> - -<br> - <input type="radio" id="knob-leave" name="knob" value="none" checked="checked"> - <label for="knob-leave"> - Leave as <b>ASSIGNED </b> - </label> - <br> - - - - - - <input type="radio" id="knob-resolve" name="knob" value="resolve"> - <label for="knob-resolve"> - Resolve bug, changing - <a href="page.cgi?id=fields.html#resolution">resolution</a> to - </label> - <select name="resolution" - onchange="document.changeform.knob[1].checked=true"> - <option value="FIXED">FIXED</option> - <option value="INVALID">INVALID</option> - <option value="WONTFIX">WONTFIX</option> - <option value="LATER">LATER</option> - <option value="REMIND">REMIND</option> - <option value="WORKSFORME">WORKSFORME</option> - <option value="CANTFIX">CANTFIX</option> - <option value="NEEDINFO">NEEDINFO</option> - <option value="TEST-REQUEST">TEST-REQUEST</option> - <option value="UPSTREAM">UPSTREAM</option> - </select> - <br> - - <input type="radio" id="knob-duplicate" name="knob" value="duplicate"> - <label for="knob-duplicate"> - Resolve bug, mark it as duplicate of bug # - </label> - <input name="dup_id" size="6" - onchange="if (this.value != '') - {document.changeform.knob[2].checked=true}"> - <br> - - <input type="radio" id="knob-reassign" name="knob" value="reassign"> - <label for="knob-reassign"> - <a href="page.cgi?id=fields.html#assigned_to">Reassign</a> bug to - </label><input - name="assigned_to" - value="net-im@gentoo.org" onchange="if ((this.value != 'net-im\x40gentoo.org') && (this.value != '')) { - document.changeform.knob[3].checked=true; - }" accesskey="b" size="32" -> - <br> - - <input type="radio" id="knob-reassign-cmp" name="knob" value="reassignbycomponent"> - <label for="knob-reassign-cmp"> - Reassign bug to default assignee - of selected component - </label> - <br> - - <input type="submit" value="Commit"> - <input type="hidden" name="form_name" value="process_bug"> - <p> - <font size="+1"> - <b> - <a href="show_activity.cgi?id=101708">View Bug Activity</a> - | - <a href="show_bug.cgi?format=multiple&id=101708">Format For Printing</a> - | - <a href="enter_bug.cgi?cloned_bug_id=101708">Clone This Bug</a> - - - </b> - </font> - </p> - - - -<hr> -<div > - <table> - <tr> - <td align="left"> - <b><a name="c0" href="#c0">Description</a>:</b> <script - type="text/javascript"><!-- - addReplyLink(0); - //--></script> - </td> - <td align="left" width="30%"> - <b>Opened:</b> 2005-08-08 00:18 PST - </td> - </tr> - </table> - - - -<pre id="comment_text_0">This is the ebuild for the latest version of ejabberd. It is based on -Karl-Johan -Karlssons ebuild, and har just been modified slightly. - -The problem with this ebuild (or rather ejabberds installer) is that during the -make of the binaries the installer goes out and installs files outside of the -sandbox (erlang files) and this causes an access_wr error when emerging. - -I have not found a way to circumvent this problem other than emerging without -the sandbox. So if you are going to test this ebuild (I use it on my server, no -problem) then you will have to install with "FEATURES="-sandbox" emerge -ejabberd". - -If anyone can modifiy the script so that this works I would be really happy! :) - -(also I still use the initd and confd from the 0.7.5 - -Reproducible: Always -Steps to Reproduce: -1. -2. -3. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c1" href="#c1">#1</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:20 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(1); //--></script> - ------- - </span> - - - -<pre id="comment_text_1"><span class="bz_obsolete"><a href="attachment.cgi?id=65393&action=view" title="initial 0.8.9 ebuild.">Created an attachment (id=65393)</a> <a href="attachment.cgi?id=65393&action=edit" title="initial 0.8.9 ebuild.">[edit]</a></span> -initial 0.8.9 ebuild. - -Alert: Will not work in sandbox, emerge with: - -FEATURES="-sandbox" emerge ejabberd</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c2" href="#c2">#2</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:21 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(2); //--></script> - ------- - </span> - - - -<pre id="comment_text_2"><span class="bz_obsolete"><a href="attachment.cgi?id=65394&action=view" title="initd startup script">Created an attachment (id=65394)</a> <a href="attachment.cgi?id=65394&action=edit" title="initd startup script">[edit]</a></span> -initd startup script -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c3" href="#c3">#3</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:23 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(3); //--></script> - ------- - </span> - - - -<pre id="comment_text_3"><span class=""><a href="attachment.cgi?id=65395&action=view" title="inetrc, make ejabberd use srv records">Created an attachment (id=65395)</a> <a href="attachment.cgi?id=65395&action=edit" title="inetrc, make ejabberd use srv records">[edit]</a></span> -inetrc, make ejabberd use srv records -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c4" href="#c4">#4</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:24 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(4); //--></script> - ------- - </span> - - - -<pre id="comment_text_4"><span class="bz_obsolete"><a href="attachment.cgi?id=65396&action=view" title="confd">Created an attachment (id=65396)</a> <a href="attachment.cgi?id=65396&action=edit" title="confd">[edit]</a></span> -confd -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c5" href="#c5">#5</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:25 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(5); //--></script> - ------- - </span> - - - -<pre id="comment_text_5"><span class="bz_obsolete"><a href="attachment.cgi?id=65397&action=view" title="ejabberd (ejabberd internal start script)">Created an attachment (id=65397)</a> <a href="attachment.cgi?id=65397&action=edit" title="ejabberd (ejabberd internal start script)">[edit]</a></span> -ejabberd (ejabberd internal start script) -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c6" href="#c6">#6</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-08-08 00:26 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(6); //--></script> - ------- - </span> - - - -<pre id="comment_text_6"><span class="bz_obsolete"><a href="attachment.cgi?id=65398&action=view" title="ejabberdctl ">Created an attachment (id=65398)</a> <a href="attachment.cgi?id=65398&action=edit" title="ejabberdctl ">[edit]</a></span> -ejabberdctl -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c7" href="#c7">#7</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-09-05 06:32 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(7); //--></script> - ------- - </span> - - - -<pre id="comment_text_7">Sandbox problems seem to be fixed from sandbox 1.2.12 and on. See also <span class="bz_closed"><a href="show_bug.cgi?id=101433" title="RESOLVED FIXED - "access" system call can cause access violation">bug -#101433</a></span>.</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c8" href="#c8">#8</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-09-05 07:11 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(8); //--></script> - ------- - </span> - - - -<pre id="comment_text_8"><span class="bz_obsolete"><a href="attachment.cgi?id=67683&action=view" title="New ebuild, include dep for sandbox 1.2.12">Created an attachment (id=67683)</a> <a href="attachment.cgi?id=67683&action=edit" title="New ebuild, include dep for sandbox 1.2.12">[edit]</a></span> -New ebuild, include dep for sandbox 1.2.12 - -I added the check for sandbox 1.2.12 or later into the script so the sandbox -problem goes away. - -Could someone please submit to portage since this works now? </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c9" href="#c9">#9</a> From - <a href="mailto:pookey@pookey.co.uk">Ian P. Christian</a> - 2005-09-07 03:04 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(9); //--></script> - ------- - </span> - - - -<pre id="comment_text_9">trying to test this I have the following issue: - -# pwd -/usr/local/portage/net-im/ejabberd -# ebuild ejabberd-0.9.8.ebuild digest -!!! aux_get(): ebuild path for 'net-im/ejabberd-0.9.8' not specified: -!!! None -!!! aux_get(): ebuild path for 'net-im/ejabberd-0.9.8' not specified: -!!! None -doebuild(): aux_get() error reading net-im/ejabberd-0.9.8; aborting. - -Kind Regards </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c10" href="#c10">#10</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-09-07 03:54 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(10); //--></script> - ------- - </span> - - - -<pre id="comment_text_10">I cannot reproduce this error here. Does it download the tar file to -/usr/portage/distfiles? Any other error? - -What did you do exactly when you copied it in?</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c11" href="#c11">#11</a> From - <a href="mailto:pookey@pookey.co.uk">Ian P. Christian</a> - 2005-09-07 05:15 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(11); //--></script> - ------- - </span> - - - -<pre id="comment_text_11">user error. please ignore. Sorry about that. -make.conf has PORT_OVERLAY rather then PORTDIR_OVERLAY, and hence this ebuild -wasn't within a portage ebuild tree thing. </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c12" href="#c12">#12</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-09-07 05:56 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(12); //--></script> - ------- - </span> - - - -<pre id="comment_text_12">Good :) - -Please report if further tweaks are needed to get it to run. I know that some -has had problems if they start ejabberd without using the init script cuz then -the spool dir gets owned by root. :)</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c13" href="#c13">#13</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-09-11 04:30 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(13); //--></script> - ------- - </span> - - - -<pre id="comment_text_13">I tried this but I just can't seem to get it to start with the init script. If -I -manually run /usr/bin/ejabberd with sudo and a modified /usr/bin/ejabberd to -set -directory and HOME it does work but I would like to run it with the init script -instead. - -I have the same problem on two different computers, with all available versions -of ejabberd. Both computers use ~x86 as their KEYWORD. The initscript writes [ -!! ] every time it is executed. If I downgrade baselayout to 1.11.13-r1 it -writes [ OK ] instead, but that is a lie as ejabberd dies right after start. - -I manually verify the owner and group of files when changning between the -different versions and it seems to be ok. - -I did not have this problem when I installed 0.7.5 the first time and then I -upgraded baselayout (and most other packages) to new versions for a few months -without restarting the computer or ejabberd. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c14" href="#c14">#14</a> From - <a href="mailto:aleander@gmail.com">Aleksander Kamil Modzelewski</a> - 2005-09-11 04:50 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(14); //--></script> - ------- - </span> - - - -<pre id="comment_text_14">(In reply to <a href="#c13">comment #13</a>) -I can confirm that, on baselayout 1.12.0_pre8-r2 -And that's definetly not local to you. I have exaclty the same problem. -Permissions are all OK. I tried to find the cause but failed miserably. After -starting /etc/init.t/ejabberd the only ejabberd-related thing running is epmd. - -But it get's weirdier. - -After second init.d run (without killing the epmd), the ejabberd started. I -telneted on 5223, wrote nothing, then killed telnet. ejabberd died. Next time I -tested ejabberd by connecting with Gossip, then reconnected - it works just fine ;) - -Still, the init.d script claims that it has failed, probably the return codes -from erl are unusual in some way. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c15" href="#c15">#15</a> From - <a href="mailto:max@city.veganet.ru">Max Loparyev</a> - 2005-09-11 07:21 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(15); //--></script> - ------- - </span> - - - -<pre id="comment_text_15"><span class=""><a href="attachment.cgi?id=68175&action=view" title="ebuild with some additions">Created an attachment (id=68175)</a> <a href="attachment.cgi?id=68175&action=edit" title="ebuild with some additions">[edit]</a></span> -ebuild with some additions - -I've added odbc flag to support ejabberd odbc backend, changed install part so -now it creates dirs at emerge, and places ejabberd binary files to erlangs lib -dir i.e. in /usr/lib/erlang/lib/<module-version>. -So -pa option in ejabberd and ejabberdctl can be removed</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c16" href="#c16">#16</a> From - <a href="mailto:max@city.veganet.ru">Max Loparyev</a> - 2005-09-11 07:22 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(16); //--></script> - ------- - </span> - - - -<pre id="comment_text_16"><span class=""><a href="attachment.cgi?id=68176&action=view" title="new ejabberd startup script">Created an attachment (id=68176)</a> <a href="attachment.cgi?id=68176&action=edit" title="new ejabberd startup script">[edit]</a></span> -new ejabberd startup script -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c17" href="#c17">#17</a> From - <a href="mailto:max@city.veganet.ru">Max Loparyev</a> - 2005-09-11 07:23 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(17); //--></script> - ------- - </span> - - - -<pre id="comment_text_17"><span class=""><a href="attachment.cgi?id=68177&action=view" title="new ejabberdctl script">Created an attachment (id=68177)</a> <a href="attachment.cgi?id=68177&action=edit" title="new ejabberdctl script">[edit]</a></span> -new ejabberdctl script -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c18" href="#c18">#18</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-09-13 15:30 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(18); //--></script> - ------- - </span> - - - -<pre id="comment_text_18">I have reinstalled the box I used as jabber server. The earlier configuration -was using keyword ~x86 but this time I go with "x86". I installed the ejabberd -from this bug with the modification to /usr/bin/ejabberd to use cd $HOME before -erl. After some database problems that made me purge all files and have ejabberd -recreate them I managed to get the init script to work. That is, it both says it -starts the daemon and it does work. Well, atleast so far. - -Baselayout is 1.11.13-r1 but what I believe is more important is that I now use -erlang-1.20.0. Alot of my configuration has changed from the non-working setup -to this, but if I had a spare euro cent I would bet it on erlang. 1.20.0 is -marked ~x86 and 1.20.5 is stable, but I did not want Tk (because it has X -dependencies) so I went with the earlier version anyway. I believe I had 1.20.0 -when I first installed ejabberd-0.7.5 and as far as I remember that worked out -of the box. - -I don't know if I want to ask anyone to downgrade erlang to an earlier version, -but if you have problems and have 1.12.5 it might be worth a shot to test it.</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c19" href="#c19">#19</a> From - <a href="mailto:catap@catap.ru">Kirill A. Korinsky</a> - 2005-11-20 15:47 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(19); //--></script> - ------- - </span> - - - -<pre id="comment_text_19">Why this ebuild don't add on official tree?.. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c20" href="#c20">#20</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-11-20 16:00 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(20); //--></script> - ------- - </span> - - - -<pre id="comment_text_20">I guess this is not official because it depends on <a href="show_bug.cgi?id=98452" title="ASSIGNED - Global jabber-dirs for all jabber-related stuff">bug #98452</a>. Also the next -release (currently beta upstreams) will depend on that bug. Converting this to -follow jabber-base now would probably speed up the addition of next upstream -version to Portage.</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c21" href="#c21">#21</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-11-21 00:09 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(21); //--></script> - ------- - </span> - - - -<pre id="comment_text_21">Also there will be a new version coming out very soon, I think when this comes -out I will do some more testing and we will see if it will be accepted. I myself -have no access to submit to portage, but maybe someone can take the job?</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c22" href="#c22">#22</a> From - <a href="mailto:catap@catap.ru">Kirill A. Korinsky</a> - 2005-11-22 06:05 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(22); //--></script> - ------- - </span> - - - -<pre id="comment_text_22"><span class=""><a href="attachment.cgi?id=73368&action=view" title="worked ebiuld">Created an attachment (id=73368)</a> <a href="attachment.cgi?id=73368&action=edit" title="worked ebiuld">[edit]</a></span> -worked ebiuld - -It's worked ebuild. Im yusing it's on my jabber server :)</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c23" href="#c23">#23</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-11-22 06:41 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(23); //--></script> - ------- - </span> - - - -<pre id="comment_text_23">That ebuild seems very similar to the 0.7.5 ebuild and to the 0.9.8 ebuild -posted previous but it does not solve the problem with jabber-base compliance.</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c24" href="#c24">#24</a> From - <a href="mailto:trejkaz@trypticon.org">Trejkaz Xaoza</a> - 2005-12-14 15:49 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(24); //--></script> - ------- - </span> - - - -<pre id="comment_text_24">Seems like version 1.0.0 is out now. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c25" href="#c25">#25</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-12-16 02:17 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(25); //--></script> - ------- - </span> - - - -<pre id="comment_text_25"><span class="bz_obsolete"><a href="attachment.cgi?id=74865&action=view" title="ejabberd 1.0.0 ebuild">Created an attachment (id=74865)</a> <a href="attachment.cgi?id=74865&action=edit" title="ejabberd 1.0.0 ebuild">[edit]</a></span> -ejabberd 1.0.0 ebuild - -I just renamed Max's ebuild to the new version and upgraded my two servers -without a hitch. Please report back about new installs if these works as they -should. - -Can anyone point out more informasjon about the jabber-base compliance? I have -not found any specifications about this. If there is such a thing I would like -to customize the ebuild to support these specifications. </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c26" href="#c26">#26</a> From - <a href="mailto:humpback@gentoo.org">Gustavo Felisberto</a> - 2005-12-16 03:23 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(26); //--></script> - ------- - </span> - - - -<pre id="comment_text_26">Info on jabber-base is in the ebuild: -/usr/portage/net-im/jabber-base/jabber-base-0.00.ebuild - -Untill this is fixed to be jabber-base friendly i cannot add it to portage.</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c27" href="#c27">#27</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-12-16 03:29 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(27); //--></script> - ------- - </span> - - - -<pre id="comment_text_27">(In reply to <a href="#c26">comment #26</a>) -> Info on jabber-base is in the ebuild: -> /usr/portage/net-im/jabber-base/jabber-base-0.00.ebuild -> -> Untill this is fixed to be jabber-base friendly i cannot add it to portage. - -You want the ejabberd ebuild to depend on jabber-base and then use the dirs and -settings that you specify in the ebuild. Do I understand you correctly then? </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c28" href="#c28">#28</a> From - <a href="mailto:albert+gentoo-bugzilla@cdr.se">Albert Holm</a> - 2005-12-16 03:42 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(28); //--></script> - ------- - </span> - - - -<pre id="comment_text_28">You can also read <span class="bz_closed"><a href="show_bug.cgi?id=98542" title="RESOLVED FIXED - gcc-config does not change to 3.4.4">bug #98542</a></span> for information about the directories. The pymsn-t -ebuild in portage depends on jabber-base, but the earlier versions did not. You -can compare the ebuilds in <span class="bz_closed"><a href="show_bug.cgi?id=88597" title="RESOLVED FIXED - pymsn-t-0.9.2 (new package)">bug #88597</a></span> to the one in portage for some hints on -what has to change atleast. - -Also, can someone please update the summary to reflect the most recent version? -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c29" href="#c29">#29</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2005-12-16 05:50 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(29); //--></script> - ------- - </span> - - - -<pre id="comment_text_29">I will try to look at this over the weekend, if anyone want to contribute feel -free :) </pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c30" href="#c30">#30</a> From - <a href="mailto:max@city.veganet.ru">Max Loparyev</a> - 2005-12-18 06:04 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(30); //--></script> - ------- - </span> - - - -<pre id="comment_text_30">i disagree to share access rights with other jabber components to be secure as -we can. There is authentication mechanizm between jabber components and no need -to share access rights to filesystem. And why the hell I need rw access to my -configs, even from the jabber server/component account? -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c31" href="#c31">#31</a> From - <a href="mailto:max@city.veganet.ru">Max Loparyev</a> - 2005-12-18 06:05 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(31); //--></script> - ------- - </span> - - - -<pre id="comment_text_31">previous post was about jabber-base if it is not clear -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c32" href="#c32">#32</a> From - <a href="mailto:asser-mag@yandex.ru">Asser</a> - 2005-12-22 00:00 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(32); //--></script> - ------- - </span> - - - -<pre id="comment_text_32"><span class=""><a href="attachment.cgi?id=75310&action=view" title="ejabberd-1.0.0.ebuild alt">Created an attachment (id=75310)</a> <a href="attachment.cgi?id=75310&action=edit" title="ejabberd-1.0.0.ebuild alt">[edit]</a></span> -ejabberd-1.0.0.ebuild alt - -This is my ebuild for ejabberd. Some use-flags was added and changed (a-la -jabberd). May be usefull for you. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c33" href="#c33">#33</a> From - <a href="mailto:tacvbo@tacvbo.net">Octavio Ruiz (Ta^3)</a> - 2006-01-18 21:16 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(33); //--></script> - ------- - </span> - - - -<pre id="comment_text_33"><span class=""><a href="attachment.cgi?id=77499&action=view" title="ejabberd-1.0.0.ebuild (jabber-base compliant)">Created an attachment (id=77499)</a> <a href="attachment.cgi?id=77499&action=edit" title="ejabberd-1.0.0.ebuild (jabber-base compliant)">[edit]</a></span> -ejabberd-1.0.0.ebuild (jabber-base compliant) -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c34" href="#c34">#34</a> From - <a href="mailto:tacvbo@tacvbo.net">Octavio Ruiz (Ta^3)</a> - 2006-01-18 21:17 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(34); //--></script> - ------- - </span> - - - -<pre id="comment_text_34"><span class=""><a href="attachment.cgi?id=77500&action=view" title="files/ejabberd-1.0.0.initd (jabber-base compliant)">Created an attachment (id=77500)</a> <a href="attachment.cgi?id=77500&action=edit" title="files/ejabberd-1.0.0.initd (jabber-base compliant)">[edit]</a></span> -files/ejabberd-1.0.0.initd (jabber-base compliant) -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c35" href="#c35">#35</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-01-30 04:49 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(35); //--></script> - ------- - </span> - - - -<pre id="comment_text_35">The new ebuild works fine (thanks Octavio!), not very happy about the spool and -run dir. Fine that they are accessed by the jabber user, but should they not -continue to be named ejabberd? If we have the same spool dir there will be -problems if we unmerge ejabberd and then emerge jabberd later, right? - -Anyone agree or disagree? - -For info, if you would like to test the newest ebuilds and have used the old -ones before then you have to rename all dirs referenced in /usr/bin/ejabberd -from ejabberd to jabber, and change owner of the files to jabber:jabber. Can be -a little tricky but it seems to work fine here at least. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c36" href="#c36">#36</a> From - <a href="mailto:tacvbo@tacvbo.net">Octavio Ruiz (Ta^3)</a> - 2006-01-30 10:09 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(36); //--></script> - ------- - </span> - - - -<pre id="comment_text_36">(In reply to <a href="#c35">comment #35</a>) -> The new ebuild works fine (thanks Octavio!) - -:) - -> not very happy about the spool and run dir. Fine that they are accessed by the jabber user, but should they not continue to be named ejabberd? - -What about /var/run/jabber/ejabberd (${JABBER_RUN}/${PN}) and -/var/spooljabber/ejabberd (${JABBER_SPOOL}/${PN}) - - -> If we have the same spool dir there will be -> problems if we unmerge ejabberd and then emerge jabberd later, right? - -HUmmm.. yes, i think problems will happend. So, tell me where do you think is -the best place? - -> -> Anyone agree or disagree? - -I can't, it's my first time using jabber daemonds but I have experience making -ebuilds, so discuss it here and I will do my best until some dev take it. - -> For info, if you would like to test the newest ebuilds and have used the old -> ones before then you have to rename all dirs referenced in /usr/bin/ejabberd -> from ejabberd to jabber, and change owner of the files to jabber:jabber. Can be a little tricky but it seems to work fine here at least. - -Thanks for pointing that (I did'nt thinked about it) but, well that 'trick' is -just for alpha-beta-bugzilla-ebuild-testers, in the tree we just have the 0.7.5 -so we need to think just in the migration from that to ejabberd-1.0.0. - -How is done? I don't know. At least to put someinfo about that in pkg_postinst. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c37" href="#c37">#37</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-01 06:25 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(37); //--></script> - ------- - </span> - - - -<pre id="comment_text_37">> > not very happy about the spool and run dir. Fine that they are accessed by the jabber user, but should they not continue to be named ejabberd? -> -> What about /var/run/jabber/ejabberd (${JABBER_RUN}/${PN}) and -> /var/spooljabber/ejabberd (${JABBER_SPOOL}/${PN}) - -I do not think that we should use PN cause the spool and run dirs will be -automatically updated on upgrades. I think we should use -/var/run/jabber/ejabberd and /var/spool/jabber/ejabberd. Alternatively leave -them at /var/run/ejabberd and /var/spoool/ejabberd like before. - -> Thanks for pointing that (I did'nt thinked about it) but, well that 'trick' is -> just for alpha-beta-bugzilla-ebuild-testers, in the tree we just have the 0.7.5 -> so we need to think just in the migration from that to ejabberd-1.0.0. - -Yes, the migration from 0.7.5 to 1.0.0 will be a tricy one aswell. I might be -able to reproduce this if you want help in making the upgrade happen. We will -need to move the spool and run (.erlang.cookie is important!) to the new dirs, -change the permissions. Then it ought to work. - -Maybe if we decide on a dir, and start to make an upgrade for 0.7.5 I can set -up a test server and the we try to upgrade it. - -Do you want me to patch your script or do you want to rewrite it youreself? -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c38" href="#c38">#38</a> From - <a href="mailto:jhknight@gmail.com">Jay Knight</a> - 2006-02-14 15:37 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(38); //--></script> - ------- - </span> - - - -<pre id="comment_text_38">What's the hold up on this bug? Are we waiting for some sort of finalization -on jabber-base? Or is it just a matter of fixing some problems with the -attached ebuild? If the latter... what still needs to be fixed? -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c39" href="#c39">#39</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-24 07:03 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(39); //--></script> - ------- - </span> - - - -<pre id="comment_text_39"><span class="bz_obsolete"><a href="attachment.cgi?id=80601&action=view" title="ejabberd-1.0.0.ebuild - jabber-base compliant rev 2">Created an attachment (id=80601)</a> <a href="attachment.cgi?id=80601&action=edit" title="ejabberd-1.0.0.ebuild - jabber-base compliant rev 2">[edit]</a></span> -ejabberd-1.0.0.ebuild - jabber-base compliant rev 2 - -This is my edit of Octavios ebuild that was great! I just changed the spool so -this will not conflict later (to /var/spool/jabber/ejabberd), I changed the ssl -pem generating to only occur if the is no pem from before, also I added some -warnings about use flags, and I also inserted a warning if it seemed the user -was upgrading from 0.7.5 or one of the bugzilla ebuilds. - -This should now be working 100%, from what I can gather. It starts and works -fine here on my test machine, it is jabber-base compliant and should now be -added to portage under ~ is my reccomendation, pretty please? - -The initd is not changed so use Octavios, but I added a confd, just renamed cus -the old one was fine. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c40" href="#c40">#40</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-24 07:03 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(40); //--></script> - ------- - </span> - - - -<pre id="comment_text_40"><span class=""><a href="attachment.cgi?id=80602&action=view" title="files\ejabberd-1.0.0.confd">Created an attachment (id=80602)</a> <a href="attachment.cgi?id=80602&action=edit" title="files\ejabberd-1.0.0.confd">[edit]</a></span> -files\ejabberd-1.0.0.confd -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c41" href="#c41">#41</a> From - <a href="mailto:lukas.polivka@gmail.com">Lukáš Polívka</a> - 2006-02-27 21:54 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(41); //--></script> - ------- - </span> - - - -<pre id="comment_text_41">I'm really looking forward to this "bug" being resolved. ^_^ - -In the meanwhile -- what about incorporating the patch for MUC HTML logging -(assign some local USE flag for this?) - -<a href="http://www.jabber.ru/bugzilla/show_bug.cgi?id=10">http://www.jabber.ru/bugzilla/show_bug.cgi?id=10</a> - -Just an idea. Keep the hard work. ^_^ -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c42" href="#c42">#42</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 00:31 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(42); //--></script> - ------- - </span> - - - -<pre id="comment_text_42">Yes this is a great idea, the patch does not apply cleanly for 1.0.0 now so I -will talk to badlop to get this sorted and then I will add this. But I think -maybe the patch should just be default, and not with use flag. Also I think we -should add mod_statsdx, I use this myselft and it is very stable, and maybe we -should add a use flag for the mysql patch. - -I will talk to badlop and see, if this ebuild comes into portage in the -meantime we can make a new -r1 or something. :) -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c43" href="#c43">#43</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:32 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(43); //--></script> - ------- - </span> - - - -<pre id="comment_text_43"><span class=""><a href="attachment.cgi?id=80892&action=view" title="net-im/ejabberd - revision 3, with muc_log and stats patches">Created an attachment (id=80892)</a> <a href="attachment.cgi?id=80892&action=edit" title="net-im/ejabberd - revision 3, with muc_log and stats patches">[edit]</a></span> -net-im/ejabberd - revision 3, with muc_log and stats patches - -New ebuild which adds support for mod_muc_log, statsdx and stats2file. The -cfg.example has also been updated with this information. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c44" href="#c44">#44</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:34 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(44); //--></script> - ------- - </span> - - - -<pre id="comment_text_44"><span class=""><a href="attachment.cgi?id=80893&action=view" title="files/ejabberd_cfg.patch">Created an attachment (id=80893)</a> <a href="attachment.cgi?id=80893&action=edit" title="files/ejabberd_cfg.patch">[edit]</a></span> -files/ejabberd_cfg.patch - -This patch updates the ejabberd.cfg.example with information for MUC logging, -statdx and stats2file. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c45" href="#c45">#45</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:35 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(45); //--></script> - ------- - </span> - - - -<pre id="comment_text_45"><span class=""><a href="attachment.cgi?id=80894&action=view" title="files/ejabberd_web_admin.erl.statsdx.patch">Created an attachment (id=80894)</a> <a href="attachment.cgi?id=80894&action=edit" title="files/ejabberd_web_admin.erl.statsdx.patch">[edit]</a></span> -files/ejabberd_web_admin.erl.statsdx.patch - -This patch adds the statsdx menu to the web admin of ejabberd. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c46" href="#c46">#46</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:36 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(46); //--></script> - ------- - </span> - - - -<pre id="comment_text_46"><span class=""><a href="attachment.cgi?id=80895&action=view" title="files/muc_log_1.0.0_eightrev.patch">Created an attachment (id=80895)</a> <a href="attachment.cgi?id=80895&action=edit" title="files/muc_log_1.0.0_eightrev.patch">[edit]</a></span> -files/muc_log_1.0.0_eightrev.patch - -This patch adds logging capabilities to the muc module. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c47" href="#c47">#47</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:37 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(47); //--></script> - ------- - </span> - - - -<pre id="comment_text_47"><span class=""><a href="attachment.cgi?id=80896&action=view" title="files\mod_statsdx.erl">Created an attachment (id=80896)</a> <a href="attachment.cgi?id=80896&action=edit" title="files\mod_statsdx.erl">[edit]</a></span> -files\mod_statsdx.erl - -This is the statsdx module. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c48" href="#c48">#48</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 02:37 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(48); //--></script> - ------- - </span> - - - -<pre id="comment_text_48"><span class=""><a href="attachment.cgi?id=80897&action=view" title="files/mod_stats2file.erl">Created an attachment (id=80897)</a> <a href="attachment.cgi?id=80897&action=edit" title="files/mod_stats2file.erl">[edit]</a></span> -files/mod_stats2file.erl - -This is the stats2file module. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c49" href="#c49">#49</a> From - <a href="mailto:humpback@gentoo.org">Gustavo Felisberto</a> - 2006-02-28 07:19 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(49); //--></script> - ------- - </span> - - - -<pre id="comment_text_49">This bug is a real mess with files and files. Can please someone send me a mail -with a tar.gz of the portage files that they know work and maybe some fast -notes on setting up ejabberd so that i can test/commit this? -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c50" href="#c50">#50</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-02-28 08:53 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(50); //--></script> - ------- - </span> - - - -<pre id="comment_text_50">Here is a tar.bz2 for all to test! :) - -<a href="http://www.jabber.no/ejabberd-1.0.0.tar.bz2">http://www.jabber.no/ejabberd-1.0.0.tar.bz2</a> -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c51" href="#c51">#51</a> From - <a href="mailto:pclouds@gentoo.org">Nguyen Thai Ngoc Duy</a> - 2006-03-03 02:47 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(51); //--></script> - ------- - </span> - - - -<pre id="comment_text_51"> * Service ejabberd starting [ !! -] - * ERROR: ejabberd failed to start - -It actually started but reported as fail -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c52" href="#c52">#52</a> From - <a href="mailto:stian@barmen.nu">Stian B. Barmen</a> - 2006-03-03 03:38 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(52); //--></script> - ------- - </span> - - - -<pre id="comment_text_52">You must provide more information. - -The thing with ejabberd is that it uses ejabberdctl to start and stop en -server. You need to try and kill the process and then start it again. The -problem I often see is that you try and start the server as root and then the -.erlang.cookie gets r for only root, and then you get a bad error from -ejabberdctl. chowning jabber:jabber /var/run/jabber/.erlang.cookie is a good -thing to try. - -Please also try to run the start script from /usr/bin/ejabberd to see what the -output is. Also do this as the jabber user. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c53" href="#c53">#53</a> From - <a href="mailto:pclouds@gentoo.org">Nguyen Thai Ngoc Duy</a> - 2006-03-04 03:06 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(53); //--></script> - ------- - </span> - - - -<pre id="comment_text_53">I did once made the mistake causing erlang.cookie owned by root. But at the -moment erlang.cookie is owned by jabber:jabber (600). -What do you want me to run from jabber account? Running ejabberd without any -parameter gives me an erlang shell. Don't know what to do from that. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c54" href="#c54">#54</a> From - <a href="mailto:pclouds@gentoo.org">Nguyen Thai Ngoc Duy</a> - 2006-03-04 03:07 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(54); //--></script> - ------- - </span> - - - -<pre id="comment_text_54">By the way, i had installed jabberd-2.0 before installing ejabberd, so -jabber:jabber was created by jabberd not ejabberd -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c55" href="#c55">#55</a> From - <a href="mailto:lars@strojny.net">Lars Strojny</a> - 2006-03-05 14:07 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(55); //--></script> - ------- - </span> - - - -<pre id="comment_text_55"><span class="bz_obsolete"><a href="attachment.cgi?id=81458&action=view" title="ejabberd-1.0.0-r1.ebuild">Created an attachment (id=81458)</a> <a href="attachment.cgi?id=81458&action=edit" title="ejabberd-1.0.0-r1.ebuild">[edit]</a></span> -ejabberd-1.0.0-r1.ebuild - -Added fix for SRV-DNS (zeroconf), some QA issues, etc. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c56" href="#c56">#56</a> From - <a href="mailto:lars@strojny.net">Lars Strojny</a> - 2006-03-05 14:07 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(56); //--></script> - ------- - </span> - - - -<pre id="comment_text_56"><span class="bz_obsolete"><a href="attachment.cgi?id=81459&action=view" title="ejabberd-1.0.0-r1.confd">Created an attachment (id=81459)</a> <a href="attachment.cgi?id=81459&action=edit" title="ejabberd-1.0.0-r1.confd">[edit]</a></span> -ejabberd-1.0.0-r1.confd -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c57" href="#c57">#57</a> From - <a href="mailto:lars@strojny.net">Lars Strojny</a> - 2006-03-05 14:08 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(57); //--></script> - ------- - </span> - - - -<pre id="comment_text_57"><span class="bz_obsolete"><a href="attachment.cgi?id=81460&action=view" title="ejabberd-1.0.0-r1.initd">Created an attachment (id=81460)</a> <a href="attachment.cgi?id=81460&action=edit" title="ejabberd-1.0.0-r1.initd">[edit]</a></span> -ejabberd-1.0.0-r1.initd -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c58" href="#c58">#58</a> From - <a href="mailto:lars@strojny.net">Lars Strojny</a> - 2006-03-05 14:13 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(58); //--></script> - ------- - </span> - - - -<pre id="comment_text_58">Sorry for the noise, saw to late, that there are sensible ebuilds now. -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c59" href="#c59">#59</a> From - <a href="mailto:lukas.polivka@gmail.com">Lukáš Polívka</a> - 2006-03-06 08:45 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(59); //--></script> - ------- - </span> - - - -<pre id="comment_text_59">PostgreSQL support is currently BROKEN with the way the ebuild is now. - -We need postgresql module from <a href="http://jungerl.sf.net">http://jungerl.sf.net</a> - -Unfortunately, it's apparently CVS-only code. - -See <a href="http://www.pgmillard.com/blog/?p=74">http://www.pgmillard.com/blog/?p=74</a> -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c60" href="#c60">#60</a> From - <a href="mailto:tacvbo@tacvbo.net">Octavio Ruiz (Ta^3)</a> - 2006-03-06 09:15 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(60); //--></script> - ------- - </span> - - - -<pre id="comment_text_60"><span class=""><a href="attachment.cgi?id=81533&action=view" title="dev-erl/pgsql-cvs-9999">Created an attachment (id=81533)</a> <a href="attachment.cgi?id=81533&action=edit" title="dev-erl/pgsql-cvs-9999">[edit]</a></span> -dev-erl/pgsql-cvs-9999 -</pre> - </div> - <div > - <br> - <span class="bz_comment"> - ------- <i>Comment - <a name="c61" href="#c61">#61</a> From - <a href="mailto:beber.gentoo@gmail.com">Bertrand Jacquin</a> - 2006-04-20 15:07 PST - </i> - <script type="text/javascript"><!-- - addReplyLink(61); //--></script> - ------- - </span> - - - -<pre id="comment_text_61">Doesn't one of ebuild above work somewhere ? - -I tried all and all build 50 % of things : - - No ejabberd, ejabberdctl installed - - No init.d/conf.d files - -Very strange. -</pre> - </div> - -</form> - -<hr> -<i><font color="#777777">First</font></i> - <i><font color="#777777">Last</font></i> - <i><font color="#777777">Prev</font></i> - <i><font color="#777777">Next</font></i> - - <i><font color="#777777">No search results available</font></i> - - <a href="query.cgi">Search page</a> - <a href="enter_bug.cgi">Enter new bug</a> - -<br> -<div id="footer"> - <div class="intro"></div> - - - - -<form method="get" action="show_bug.cgi"> -<p class="version"><a href="http://www.bugzilla.org/">Bugzilla</a> Version 2.20+<br> - -<div id="useful-links"> - <div id="links-actions"> - <div class="label">Actions:</div> - <div class="links"> - <a href="./">Home</a> | - <a href="enter_bug.cgi">New</a> | - <a href="query.cgi">Search</a> | - bug # <input class="txt" name="id" size="6"> - <input class="btn" type="submit" value="Find"> | - - <a href="report.cgi">Reports</a> - - | <a href="request.cgi">Requests</a> - - - | <a href="createaccount.cgi">New Account</a> - | <a href="index.cgi?GoAheadAndLogIn=1">Log In</a> - </div> - </div> - - - - - - <div id="links-saved"> - <div class="label"> - </div> - <div class="links"> +checkconfig() { + if [ ! -e /etc/jabber/ejabberd.cfg ] ; then + eerror "You need an /etc/jabber/ejabberd.cfg file to run ejabberd" + return 1 + fi +} - </div> - </div> +start() { + checkconfig || return 1 + ebegin "Starting eJabberd" + start-stop-daemon --start --quiet --chuid jabber:jabber \ + --exec /usr/bin/env HOME=/var/run/jabber /usr/bin/ejabberd -- -noshell -detached + eend $? +} - -</div> -</form> +stop() { + ebegin "Stopping eJabberd" + if [ -z "$EJABBERD_NODE" ]; + then + EJABBERD_NODE="ejabberd@`hostname -s`" + fi + /usr/bin/ejabberdctl $EJABBERD_NODE stop + eend $? +} - <div class="outro"></div> -</div> +# Work around a bug in /sbin/runscript.sh - it won't run our custom +# restart() unless it finds these two strings in the file. +# svc_start svc_stop +restart() { + ebegin "Restarting eJabberd" + if [ -z "$EJABBERD_NODE" ]; + then + EJABBERD_NODE="ejabberd@`hostname -s`" + fi + /usr/bin/ejabberdctl $EJABBERD_NODE restart + eend $? +} -</body> -</html>
\ No newline at end of file +reload() { + ebegin "Reloading eJabberd" + if [ -z "$EJABBERD_NODE" ]; + then + EJABBERD_NODE="ejabberd@`hostname -s`" + fi + /usr/bin/ejabberdctl $EJABBERD_NODE reopen-log + eend $? +} |