02_add_debian_files_in_manpage.dpatch 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #! /bin/sh -e
  2. ## 02_add_debian_files_in_manpage.dpatch by <weasel@debian.org>
  3. ##
  4. ## All lines beginning with `## DP:' are a description of the patch.
  5. ## DP: No description.
  6. if [ $# -lt 1 ]; then
  7. echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
  8. exit 1
  9. fi
  10. [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
  11. patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
  12. case "$1" in
  13. -patch) patch -p1 ${patch_opts} < $0;;
  14. -unpatch) patch -R -p1 ${patch_opts} < $0;;
  15. *)
  16. echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
  17. exit 1;;
  18. esac
  19. exit 0
  20. @DPATCH@
  21. diff -urNad tor-0.1.1.5/doc/tor.1.in /tmp/dpep.E9VjWB/tor-0.1.1.5/doc/tor.1.in
  22. --- tor-0.1.1.12/doc/tor.1.in
  23. +++ /tmp/dpep.E9VjWB/tor-0.1.1.12/doc/tor.1.in
  24. @@ -710,6 +710,12 @@
  25. (fingerprint) are rejected by the authoritative directory server. If
  26. it is \fB!invalid\fP then descriptors are accepted but marked in the
  27. directory as not valid (not recommended).
  28. +.TP
  29. +.B /var/log/tor/
  30. +The tor server logs to this directory.
  31. +.TP
  32. +.B /var/run/tor/tor.pid
  33. +The PID of the tor (master) process is stored in this file.
  34. .SH SEE ALSO
  35. .BR privoxy (1),
  36. .BR tsocks (1),