Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 612708 Details for
Bug 857284
Installer makes invalid edits to jabberd configs, violates system path rules, and files NOT owned by 'root'
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
xml patches
jabber.patch (text/plain), 6.30 KB, created by
matthew patton
on 2012-09-14 02:52:23 UTC
(
hide
)
Description:
xml patches
Filename:
MIME Type:
Creator:
matthew patton
Created:
2012-09-14 02:52:23 UTC
Size:
6.30 KB
patch
obsolete
> >--- c2s.xml 2012/09/13 23:17:45 1.1 >+++ c2s.xml 2012/09/14 00:01:17 >@@ -5,12 +5,12 @@ > > <!-- The process ID file. Comment this out if you don't need to know > the process ID from outside the process (eg for control scripts) --> >- <pidfile>/var/lib/jabberd/pid/c2s.pid</pidfile> >+ <pidfile>/var/run/jabberd/c2s.pid</pidfile> > > <!-- Router connection configuration --> > <router> > <!-- IP/port the router is waiting for connections on --> >- <ip>::1</ip> <!-- default: 127.0.0.1 --> >+ <ip>127.0.0.1</ip> <!-- default: 127.0.0.1 --> > <port>5347</port> <!-- default: 5347 --> > > <!-- Username/password to authenticate as --> >@@ -50,7 +50,7 @@ > </router> > > <!-- Log configuration - type is "syslog", "file" or "stdout" --> >- <log type="syslog"> >+ <log type="file"> > > <!-- If logging to syslog, this is the log ident --> > <ident>jabberd/c2s</ident> > >@@ -59,9 +59,7 @@ > <facility>local3</facility> > > <!-- If logging to file, this is the filename of the logfile --> >- <!-- >- <file>/var/lib/jabberd/log/c2s.log</file> >- --> >+ <file>/var/log/jabberd/c2s.log</file> > </log> > > <!-- Local network configuration --> >@@ -149,7 +147,7 @@ > <id password-change='mu' /> --> > > <!-- IP address to bind to (default: 0.0.0.0) --> >- <ip>::</ip> >+ <ip>0.0.0.0</ip> > > <!-- Port to bind to, or 0 to disable unencrypted access to the > server (default: 5222) --> > >==================== >perms need to be changed to: >drwxr-x---. 4 root jabber 4096 Sep 13 20:01 /etc/jabberd/ > >-rw-r----- 1 root jabber 22333 Sep 13 20:01 c2s.xml >-rw-r-----. 1 root jabber 1683 Aug 24 17:19 router-filter.xml >-rw-r-----. 1 root jabber 292 Aug 24 17:19 router-users.xml >-rw-r-----. 1 root jabber 6762 Aug 24 18:20 router.xml >-rw-r-----. 1 root jabber 11097 Aug 24 18:20 s2s.xml >-rw-r-----. 1 root jabber 29391 Aug 24 18:20 sm.xml > >==================== >--- router.xml 2012/09/14 00:11:30 1.1 >+++ router.xml 2012/09/14 00:17:38 >@@ -5,10 +5,10 @@ > > <!-- The process ID file. Comment this out if you don't need to know > the process ID from outside the process (eg for control scripts) --> >- <pidfile>/var/lib/jabberd/pid/router.pid</pidfile> >+ <pidfile>/var/run/jabberd/router.pid</pidfile> > > <!-- Log configuration - type is "syslog", "file" or "stdout" --> >- <log type="syslog"> >+ <log type="file"> > <!-- If logging to syslog, this is the log ident --> > <ident>jabberd/router</ident> > > > >@@ -17,15 +17,13 @@ > <facility>local3</facility> > > <!-- If logging to file, this is the filename of the logfile --> >- <!-- >- <file>/var/lib/jabberd/log/router.log</file> >- --> >+ <file>/var/log/jabberd/router.log</file> > </log> > > <!-- Local network configuration --> > <local> > <!-- IP address to bind to (default: 0.0.0.0) --> >- <ip>::</ip> >+ <ip>127.0.0.1</ip> > > <!-- Port to bind to (default: 5347) --> > <port>5347</port> > >==================== > >--- s2s.xml 2012/09/14 00:19:03 1.1 >+++ s2s.xml 2012/09/14 00:27:51 >@@ -5,12 +5,12 @@ > > <!-- The process ID file. Comment this out if you don't need to know > the process ID from outside the process (eg for control scripts) --> >- <pidfile>/var/lib/jabberd/pid/s2s.pid</pidfile> >+ <pidfile>/var/run/jabberd/s2s.pid</pidfile> > > <!-- Router connection configuration --> > <router> > <!-- IP/port the router is waiting for connections on --> >- <ip>::1</ip> <!-- default: 127.0.0.1 --> >+ <ip>127.0.0.1</ip> <!-- default: 127.0.0.1 --> > <port>5347</port> <!-- default: 5347 --> > > <!-- Username/password to authenticate as --> >@@ -60,7 +60,7 @@ > </router> > > <!-- Log configuration - type is "syslog", "file" or "stdout" --> >- <log type="syslog"> >+ <log type="file"> > > <!-- If logging to syslog, this is the log ident --> > <ident>jabberd/s2s</ident> > >@@ -69,16 +69,14 @@ > <facility>local3</facility> > > <!-- if logging to file, this is the filename of the logfile --> >- <!-- >- <file>/var/lib/jabberd/log/s2s.log</file> >- --> >+ <file>/var/log/jabberd/s2s.log</file> > </log> > > <!-- Local network configuration --> > <local> > <!-- IP and port to listen for incoming s2s connections on > (default: 0.0.0.0, 5269) --> >- <ip>::</ip> > >+ <ip>0.0.0.0</ip> > <port>5269</port> > > <!-- Multihomed machines (with more than one interface and IP address) >==================== > >--- sm.xml 2012/09/14 00:29:30 1.1 >+++ sm.xml 2012/09/14 00:38:07 >@@ -5,12 +5,12 @@ > > <!-- The process ID file. Comment this out if you don't need to know > the process ID from outside the process (eg for control scripts) --> >- <pidfile>/var/lib/jabberd/pid/sm.pid</pidfile> >+ <pidfile>/var/run/jabberd/sm.pid</pidfile> > > <!-- Router connection configuration --> > <router> > <!-- IP/port the router is waiting for connections on --> >- <ip>::1</ip> <!-- default: 127.0.0.1 --> >+ <ip>127.0.0.1</ip> <!-- default: 127.0.0.1 --> > <port>5347</port> <!-- default: 5347 --> > > <!-- Username/password to authenticate as --> >@@ -50,7 +50,7 @@ > </router> > > <!-- Log configuration - type is "syslog", "file" or "stdout" --> >- <log type="syslog"> >+ <log type="file"> > > <!-- If logging to syslog, this is the log ident --> > <ident>jabberd/sm</ident> > >@@ -59,9 +59,7 @@ > <facility>local3</facility> > > <!-- If logging to file, this is the filename of the logfile --> >- <!-- >- <file>/var/lib/jabberd/log/sm.log</file> >- --> >+ <file>/var/log/jabberd/sm.log</file> > </log> > > <!-- Local network configuration --> >@@ -206,7 +204,7 @@ > <!-- Filesystem driver configuration --> > <fs> > <!-- Directory to store database files under. --> >- <path>/var/lib/lib/jabberd2/fs</path> >+ <path>/var/lib/jabberd/fs</path> > </fs> > >==================== > >--- jabberd 2012/09/14 00:41:07 1.1 >+++ jabberd 2012/09/14 00:47:35 >@@ -22,7 +22,7 @@ > progs="$START_DAEMONS" > progsPath="/usr/bin" > confPath="/etc/jabberd/" >-pidPath="/var/lib/jabberd/pid" >+pidPath="/var/run/jabberd" > retval=0 > # > ReqBins ( ) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 857284
: 612708