saving uncommitted changes in /etc prior to emerge run

This commit is contained in:
hasufell 2015-04-07 21:41:11 +02:00 committed by root
parent 202d0eef70
commit 5ad01267f1
3 changed files with 111 additions and 0 deletions

25
init.d/mu-conference Executable file
View File

@ -0,0 +1,25 @@
#!/sbin/runscript
depend() {
need net
use jabber-server
}
start() {
ebegin "Starting MUC Jabber Transport"
start-stop-daemon \
--background \
--start \
--user jabber:jabber \
--exec /usr/bin/mu-conference \
-- -c /etc/jabber/mu-conference.xml
eend $?
}
stop() {
ebegin "Stoping MUC Jabber Transport"
start-stop-daemon \
--stop \
--pidfile /var/run/jabber/mu-conference.pid
eend $?
}

61
jabber/mu-conference.xml Normal file
View File

@ -0,0 +1,61 @@
<jcr>
<!--
This is a config file for a copy of MU-Conference, compiled against
the Jabber Component Runtime (JCR). This is the same file that I use
to connect to my development server, running jabberd2 beta2
In order to connect to a jabberd v1.4 server, simply change the
<name> value to muclinker, and make sure the muclinker section is in
your main jabber.xml file, as per the MU-Conference README file.
-->
<name>conference.localhost</name> <!-- the jid of your component -->
<host>conference.localhost</host> <!-- this should be the same as above -->
<ip>localhost</ip> <!-- adress of the jabber server -->
<port>5347</port> <!-- port used to connect the service to the jabber server -->
<secret>secret</secret> <!-- secret shared with the jabber server -->
<spool>/var/spool/jabber/mu-conference</spool> <!-- directory containing the rooms data -->
<logdir>/var/log/jabber</logdir> <!-- directory containing the debug log (the file is called mu-conference.log) -->
<pidfile>/var/run/jabber/mu-conference.pid</pidfile> <!-- file that will contain the PID of the process -->
<!-- <logstderr/> --> <!-- uncomment to also send log to stderr -->
<loglevel>124</loglevel> <!-- log verbosity, 255 for very verbose, 0 for quiet -->
<conference xmlns="jabber:config:conference">
<public/> <!-- rooms are public when created, comment to make them private by default -->
<!-- the vCard section contains the vCard of the service -->
<vCard>
<FN>Public Chatrooms</FN>
<DESC>This service is for public chatrooms.</DESC>
<URL>http://foo.bar/</URL>
</vCard>
<history>40</history> <!-- maximum numbers of history lines send when joining a room -->
<logdir>/var/log/jabber/mu-conference/</logdir> <!-- where to store the room logs, comment to disable logging -->
<!--logsubdirs/--> <!-- uncomment to stores the room logs in subdirs (for example 2007/08/02) -->
<stylesheet>/etc/jabber/style.css</stylesheet> <!--URL of the log stylesheet -->
<!-- default text to send to legacy clients, will also be used in the logs -->
<notice>
<join>has become available</join>
<leave>has left</leave>
<rename>is now known as</rename>
</notice>
<!-- lists of admins of the service, add a <user/> tag by admin -->
<sadmin>
<user>admin@localhost</user>
</sadmin>
<!-- <dynamic/> --> <!-- when uncommented, only dynamic rooms can be created -->
<!-- <persistent/> --> <!-- persistent rooms will be created, overide <dynamic/> -->
<!-- <locknicks/> --> <!-- enforce the user nickname to the user part of his jid -->
<!-- <roomlock/> --> <!-- uncomment to allow only admins to create rooms -->
<!-- <hideempty/> --> <!-- uncomment to hide rooms with no participants -->
<!-- configuration of MySQL, only used if the MySQL exports is activated, see README.sql -->
<!--<mysql>
<user>root</user>
<pass/>
<database>chat</database>
<host>localhost</host>
</mysql>-->
</conference>
</jcr>

25
jabber/style.css Normal file
View File

@ -0,0 +1,25 @@
html {
background-color: #efefef;
}
body {
margin: 20px 20px 20px 20px;
padding: 10px 10px 10px 10px;
border: 1px solid black;
background-color: #fffff2;
color: #464543;
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size: 12pt;
}
span.time {
color: #8b8986;
}
span.time a{
color: #8b8986;
text-decoration: none;
}
span.nick {
color: black;
}