Displaying 2 results from an estimated 2 matches for "cvstree".
Did you mean:
cvstrees
2003 Nov 17
1
rsync --daemon and logfile that can't be created
...(0) = ?
1) It's a bother that it first daemonizes itself and then checks the
config etc., giving no feedback whatsoever that it's not running.
2) core dumps are never good :-(
Here'a a proposed patch to fallback to syslog if opening the log file
fails:
--- ../cvstree/rsync/log.c 2003-03-25 03:28:54.000000000 +0100
+++ ./log.c 2003-11-17 13:31:15.000000000 +0100
@@ -134,9 +134,9 @@
static void logit(int priority, char *buf)
{
- if (logfname) {
- if (!logfile)
- log_open();
+ if (logfname && !logfile)
+ log_open();
+ if (logfi...
2004 Jan 22
1
PROBLEM: Filesystem became readonly, then kernel crashes on shutdown
...re....
[7.] Environment
bash-2.05b$ set
BASH=/usr/bin/bash
BASH_VERSINFO=([0]="2" [1]="05b" [2]="0" [3]="1" [4]="release"
[5]="i486-slackwa
re-linux-gnu")
BASH_VERSION='2.05b.0(1)-release'
COLUMNS=80
CVSROOT=:ext:mike@localhost:/cvstrees/crossover
CVS_RSH=ssh
CXOFFICE_DRIVE_TYPE_HACK=hd
DIRSTACK=()
DISPLAY=:0.0
EUID=1000
GDK_USE_XFT=1
GROUPS=()
HISTFILE=/home/mike/.bash_history
HISTFILESIZE=500
HISTSIZE=500
HOME=/home/mike
HOSTNAME=kimchi.codeweavers.com
HOSTTYPE=i486
HUSHLOGIN=FALSE
HZ=100
IFS=$' \t\n'
INPUTRC=/etc/inputr...