1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#! /bin/sh -e
## 05-Tune4ssConf.dpatch by Raphael Bossek <bossekr@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
if [ $# -lt 1 ]; then
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
case "$1" in
-patch) patch -p1 ${patch_opts} < $0;;
-unpatch) patch -R -p1 ${patch_opts} < $0;;
*)
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1;;
esac
exit 0
@DPATCH@
--- python-4suite-0.99cvs20050329/4Suite/docs/xml/HowTos/4ss.conf.sample 2005-03-29 20:34:41.524366052 +0200
+++ python-4suite-0.99cvs20050329/4Suite/docs/xml/HowTos/4ss.conf.sample.orig 2005-03-29 20:37:14.796761505 +0200
@@ -7,38 +7,33 @@
<SystemContainer>ftss</SystemContainer>
- <!-- Use filesystem for repository -->
- <!--
+ <!-- For Debian GNU/Linux the FlatFile repository is the default -->
<Driver rdf:parseType='Resource'>
<rdf:type resource='http://xmlns.4suite.org/4ss/properties#FlatFile'/>
<Root>xmlserver</Root>
</Driver>
- -->
- <!-- Use PostGreSQL for repository -->
+ <!-- PostgreSQL repository dissabled by default on Debian GNU/Linux
+ User, Password, Host, Port are optional.
+ SECURITY NOTE: All info is stored here in plain text!
+ Omit whatever optional fields you would rather be prompted for.
<Driver rdf:parseType='Resource'>
<rdf:type resource='http://xmlns.4suite.org/4ss/properties#Postgres'/>
<DbName>xmlserver</DbName>
<User>dbusername</User>
- <!--
- User, Password, Host, Port are optional.
- SECURITY NOTE: All info is stored here in plain text!
- Omit whatever optional fields you would rather be prompted for.
- -->
- <!--
<Password>dbpwd</Password>
<Host>dbhost</Host>
<Port>dbport</Port>
- -->
</Driver>
+ -->
<!-- Controller PID and log file locations -->
- <PidFile>/tmp/4ss.pid</PidFile>
- <LogFile>/tmp/4ss.log</LogFile>
+ <PidFile>/var/run/4Suite/4ss.pid</PidFile>
+ <LogFile>/var/log/4Suite/4ss.log</LogFile>
<!-- Controller log level (optional; default: notice) -->
<!-- one of emerg|crit|error|warning|notice|info|debug -->
- <LogLevel>debug</LogLevel>
+ <LogLevel>notice</LogLevel>
</Core>
</rdf:RDF>
|