search for: lrtv

Displaying 4 results from an estimated 4 matches for "lrtv".

Did you mean: lrt
2015 Jun 25
0
[PATCH v2 4/9] daemon: Add -l / --listen flag.
...ions(-) diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 8285d27..1bcdfa3 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -139,15 +139,17 @@ usage (void) int main (int argc, char *argv[]) { - static const char *options = "rtv?"; + static const char *options = "lrtv?"; static const struct option long_options[] = { { "help", 0, 0, '?' }, + { "listen", 0, 0, 'l' }, { "test", 0, 0, 't' }, { "verbose", 0, 0, 'v' }, { 0, 0, 0, 0 } }; int c; char *cmdline;...
2005 Sep 24
0
[Bug 3116] New: large tar files: 1 gig size: retransmitted: rsync_rsh
...l an rsync daemon on the remote end. When I do a second batch of mostly static content, I don't have any issues. Below are my options: #!/bin/sh TERM="VT100" RSYNC_RSH="ssh -c blowfish -2 -i /usr/username/.ssh/id_dsa" export RSYNC_RSH echo ' ' /bin/date /bin/rsync -lrtv --stats --timeout=300 --delete-after \ /home/backup/psa username@hostname.net:/home/username/backup source ssh version: OpenSSH_3.9p1 destination ssh version: OpenSSH_3.6.1p2 Output of rsync log: Sat Sep 24 03:01:01 EDT 2005 building file list ... done psa/ psa/psa.dump.full.monthly.aa p...
2015 Jun 25
13
[PATCH v2 0/9] Better testing of the guestfsd daemon.
In v2: - Kernel command line parsing now moved to the appliance. - In the captive daemon test, the daemon cleanly shuts down on exit. - Add another btrfs test. Rich.
2015 Jun 23
10
[PATCH 0/7] Better testing of the guestfsd daemon.
Currently we are unable to properly run guestfsd (the daemon) under valgrind. Attempts to run valgrind inside the appliance have not been successful (see patch 1/7). However we desperately need better valgrind coverage of the daemon, particularly because it is doing a lot of complex parsing of program output. This has been a problem for a long time. A better way to attack this problem is to