Do not patch the default torrc to include settings we really want. Instead modify the compiled in default options.

svn:r2813
This commit is contained in:
Peter Palfrader 2004-11-12 17:17:58 +00:00
parent a1e7ad4855
commit ead200164a
9 changed files with 114 additions and 116 deletions

13
debian/README.Debian vendored Normal file
View File

@ -0,0 +1,13 @@
This is the Debian package for Tor, The Onion Router.
The following changes have been made to the Tor source to integrate it better
into Debian:
- RunAsDaemon is enabled by default.
- PidFile is set to /var/run/tor/tor.pid. No default upstream.
- default logging goes to /var/log/tor/log instead of stdout.
- DataDirectory is set to /var/lib/tor by default. No default upstream.
--
Peter Palfrader, Fri, 12 Nov 2004 18:08:54 +0100

11
debian/changelog vendored
View File

@ -5,8 +5,17 @@ tor (0.0.8+0.0.9pre5-2) unreleased; urgency=low
* Make logs readable by the system administrators (group adm).
* Point to /var/log/tor (the directory) instead of a single
file (/var/log/tor/log) in the debian patch of the manpage.
* Do not patch the default torrc to include settings we really want.
Instead modify the compiled in default options. Those settings are
- RunAsDaemon is enabled by default.
- PidFile is set to /var/run/tor/tor.pid. No default upstream.
- default logging goes to /var/log/tor/log instead of stdout.
- DataDirectory is set to /var/lib/tor by default. No default upstream.
This is also documented in the new debian/README.Debian.
-- Peter Palfrader <weasel@debian.org> Fri, 12 Nov 2004 17:51:13 +0100
-- Peter Palfrader <weasel@debian.org> Fri, 12 Nov 2004 18:11:26 +0100
tor (0.0.8+0.0.9pre5-1) unstable; urgency=low

View File

@ -1,5 +1,4 @@
01_uncomment_datadirectory.dpatch
02_add_debian_files_in_manpage.dpatch
03_tor_manpage_in_section_8.dpatch
04_run_as_daemon.dpatch
05_log_to_file.dpatch
06_add_compile_time_defaults.dpatch
07_log_to_file_by_default.dpatch

View File

@ -1,37 +0,0 @@
#! /bin/sh -e
## 01_uncomment_datadirectory.dpatch by <weasel@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@
diff -urNad tor-0.0.9pre5/src/config/torrc.sample.in /tmp/dpep.bt2Xog/tor-0.0.9pre5/src/config/torrc.sample.in
--- tor-0.0.9pre5/src/config/torrc.sample.in 2004-11-09 21:04:18.000000000 +0100
+++ /tmp/dpep.bt2Xog/tor-0.0.9pre5/src/config/torrc.sample.in 2004-11-10 03:23:26.072988347 +0100
@@ -45,7 +45,7 @@
# The directory for keeping all the keys/etc. By default, we store
# things in $HOME/.tor on Unix, and in Application Data\tor on Windows.
-#DataDirectory @LOCALSTATEDIR@/lib/tor
+DataDirectory @LOCALSTATEDIR@/lib/tor
##################### Below is just for servers #####################

View File

@ -1,38 +0,0 @@
#! /bin/sh -e
## 04_run_as_daemon.dpatch by <weasel@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@
diff -urNad cvs/src/config/torrc.sample.in /tmp/dpep.ICyOZe/cvs/src/config/torrc.sample.in
--- cvs/src/config/torrc.sample.in 2004-11-10 03:09:14.931082420 +0100
+++ /tmp/dpep.ICyOZe/cvs/src/config/torrc.sample.in 2004-11-10 04:32:54.737527368 +0100
@@ -32,7 +32,8 @@
# Uncomment this to start the process in the background... or use
# --runasdaemon 1 on the command line.
-#RunAsDaemon 1
+RunAsDaemon 1
+PIDfile /var/run/tor/tor.pid
# Tor only trusts directories signed with one of these keys, and
# uses the given addresses to connect to the trusted directory

View File

@ -1,37 +0,0 @@
#! /bin/sh -e
## 05_log_to_file.dpatch by <weasel@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@
diff -urNad cvs/src/config/torrc.sample.in /tmp/dpep.5IEZdW/cvs/src/config/torrc.sample.in
--- cvs/src/config/torrc.sample.in 2004-11-10 03:09:14.931082420 +0100
+++ /tmp/dpep.5IEZdW/cvs/src/config/torrc.sample.in 2004-11-10 04:34:35.090758448 +0100
@@ -19,6 +19,8 @@
# Logs go to stdout unless redirected by something else, like one of
# the below lines, or --logfile on the command line.
+### Send all messages of level 'notice' or higher to @LOCALSTATEDIR@/log/tor/log
+Log notice file @LOCALSTATEDIR@/log/tor/log
### Send all messages of level 'warn' or higher to @LOCALSTATEDIR@/log/tor/warnings
#Log warn file @LOCALSTATEDIR@/log/tor/warnings
### Send all debug and info messages to @LOCALSTATEDIR@/log/tor/debug

View File

@ -0,0 +1,51 @@
#! /bin/sh -e
## 06_add_compile_time_defaults.dpatch by <weasel@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@
diff -urNad cvs/src/or/config.c /tmp/dpep.XUCqlY/cvs/src/or/config.c
--- cvs/src/or/config.c 2004-11-12 17:40:22.906576139 +0100
+++ /tmp/dpep.XUCqlY/cvs/src/or/config.c 2004-11-12 17:58:01.603511522 +0100
@@ -95,7 +95,7 @@
VAR("ControlPort", UINT, ControlPort, "0"),
VAR("CookieAuthentication",BOOL, CookieAuthentication, "0"),
VAR("DebugLogFile", STRING, DebugLogFile, NULL),
- VAR("DataDirectory", STRING, DataDirectory, NULL),
+ VAR("DataDirectory", STRING, DataDirectory, "/var/lib/tor"),
VAR("DirPort", UINT, DirPort, "0"),
VAR("DirBindAddress", LINELIST, DirBindAddress, NULL),
VAR("DirFetchPostPeriod", UINT, DirFetchPostPeriod, "600"),
@@ -135,11 +135,11 @@
VAR("ORPort", UINT, ORPort, "0"),
VAR("ORBindAddress", LINELIST, ORBindAddress, NULL),
VAR("OutboundBindAddress", STRING, OutboundBindAddress, NULL),
- VAR("PidFile", STRING, PidFile, NULL),
+ VAR("PidFile", STRING, PidFile, "/var/run/tor/tor.pid"),
VAR("PathlenCoinWeight", DOUBLE, PathlenCoinWeight, "0.3"),
VAR("RedirectExit", LINELIST, RedirectExit, NULL),
OBSOLETE("RouterFile"),
- VAR("RunAsDaemon", BOOL, RunAsDaemon, "0"),
+ VAR("RunAsDaemon", BOOL, RunAsDaemon, "1"),
VAR("RunTesting", BOOL, RunTesting, "0"),
VAR("RecommendedVersions", LINELIST, RecommendedVersions, NULL),
VAR("RendNodes", STRING, RendNodes, NULL),

View File

@ -0,0 +1,37 @@
#! /bin/sh -e
## 07_log_to_file_by_default.dpatch by <weasel@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@
diff -urNad cvs/src/or/config.c /tmp/dpep.fbjWEM/cvs/src/or/config.c
--- cvs/src/or/config.c 2004-11-12 18:10:35.333768630 +0100
+++ /tmp/dpep.fbjWEM/cvs/src/or/config.c 2004-11-12 18:10:53.432747222 +0100
@@ -1026,7 +1026,7 @@
/* Special case if no options are given. */
if (!options->Logs) {
- options->Logs = config_line_prepend(NULL, "Log", "notice-err stdout");
+ options->Logs = config_line_prepend(NULL, "Log", "notice file /var/log/tor/log");
}
if (config_init_logs(options, 1)<0) /* Validate the log(s) */

1
debian/tor.docs vendored
View File

@ -2,6 +2,7 @@ AUTHORS
README
INSTALL
debian/README.privoxy
debian/README.Debian
doc/CLIENTS
doc/FAQ
doc/HACKING