Need hint for my question regarding the working of rsync.

Karl O. Pinc kop at meme.com
Wed Nov 13 09:22:53 MST 2013


On 11/12/2013 04:25:53 PM, Kevin Korb wrote:
> First, are you talking about --checksum checksums or the hashing of
> files that are different on both ends so that only the differences
> need to be transferred?  You seem to be talking about the latter 
> while
> describing the performance of the former.

Attached are the output on the rsync source and destnation
systems of commands like:

vmstat 1 | awk '{print "destsys " strftime("%H:%M:%S") " " $0;}' > /
tmp/destlog

and

printf '' > /tmp/destrlog ; while sleep 1 ; do ps axwww --forest | grep 
rsync | awk '{print "destsys " strftime("%H:%M:%S") " " $0;}' >> /tmp/
destrlog ; done

---

At 9:00:06 the rsync command starts on the system to which
the data is being transferred (destrlog):

rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-
file-system --archive --hard-links --quiet --numeric-ids --sparse --
link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/
backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /
srv/backups/janus/2013-11-13-09-00/

At 9:00:07 this can be seen on the source side (invoked via
an ssh authorized_keys file)  (srcrlog):

rsync --server --daemon .

From 9:00:06 to 9:00:42 the source side is reading the disk.
At 9:00:42 the destination side begins to read the disk.

This is not a great example since the source side is doing
other processes and the destination side is much faster than
the source, but usually what I'll see at this point is that
the source side becomes more or less idle and waits for the
destination side to finish reading.  In this case the
destination side does this in about 2 seconds
so it's hard to see.  You can see on the source side that
the disk io has dropped and the cpu is spending less time
waiting for disk.

The whole thing is a lot more apparent when either the
filesystems are very large or the systems very slow.
In these cases it would save wall time if the source
and destination did what appears to be "initial reading"
in parallel.


At about 9:00:46 rsync I start to get steady activity
on both the source and destination sides.  Most of the
--link-dest directory content is already on the
dest side so there's not a lot for the dest side
to do.

At about 9:01:49 the rsync command finishes (destrlog).

---

The awk is gawk.  The systems are debian 7.  The rsync is:

$ rsync --version
rsync  version 3.0.9  protocol version 30
Copyright (C) 1996-2011 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
    64-bit files, 64-bit inums, 32-bit timestamps, 64-bit long ints,
    socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
    append, ACLs, xattrs, iconv, symtimes


Karl <kop at meme.com>
Free Software:  "You don't pay back, you pay forward."
                 -- Robert A. Heinlein
-------------- next part --------------
srcsys 08:59:55 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 08:59:55  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 08:59:55  0  0 134024  34384   2316  44608    6    2    27    24   26   31  4  1 94  1
srcsys 08:59:56  0  0 134024  33612   2324  44608    0    0     0    84   77   97  0  3 95  2
srcsys 08:59:57  0  0 134020  34092   2340  44640    0    0    48     0   79   89  2  2 93  3
srcsys 08:59:58  0  1 134020  33536   2356  44812   96    0   284     0  108  105  2  5 86  7
srcsys 08:59:59  0  0 134020  33372   2356  44816  288    0   288     0  156  109  2  6 73 18
srcsys 09:00:00  0  0 134020  33372   2356  44816    0    0     0     0   89   88  7  6 87  0
srcsys 09:00:01  0  0 134020  33432   2356  44816    0    0     0     0   87   89  4  7 89  0
srcsys 09:00:02  1  0 134020  28848   2404  46576    8    0  1808   100  291  484 26 26 15 34
srcsys 09:00:03  1  0 134020  25428   2452  47780    0    0  1236     0  355  602 52 26  0 23
srcsys 09:00:04  2  0 134020  30116   2452  47780    0    0     0     0   91   77  9  5 86  0
srcsys 09:00:05  0  0 134020  30312   2452  47780    0    0     0     0   63   70  1  3 96  0
srcsys 09:00:06  3  0 134020  28240   2536  48988   68    0  1356     0  290  451 22 20 14 43
srcsys 09:00:07  1  1 134020  26140   3812  49092    0    0  1372   144  624 1499 19 32  0 49
srcsys 09:00:08  1  1 134020  24520   4464  49628    0    0  1188     0  687 1310 15 32 20 33
srcsys 09:00:09  1  1 134020  21460   5884  49700    0    0  1492     0  850 1735 19 45  0 36
srcsys 09:00:10  1  1 134020  18520   7160  49700    0    0  1276     0  815 1658 13 42  0 45
srcsys 09:00:11  5  1 134020  16524   8220  49700    0    0  1060   224  747 1394 11 28  0 60
srcsys 09:00:12  2  0 134020  13736  10004  49700    0    0  1784     0  825 1764 12 45  1 42
srcsys 09:00:13  1  1 134020  11696  11216  49700    0    0  1212     0  575 1173  9 31  0 61
srcsys 09:00:14  2  0 134020   9956  12260  49700    0    0  1036    36  558 1079 11 29  0 60
srcsys 09:00:15  4  0 134020   7856  13380  49700    0    0  1120     0  602 1276 11 32  0 56
srcsys 09:00:16 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 09:00:16  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 09:00:16  5  1 134020   5696  14328  49804    0    0  1052     0  628 1235 13 32  0 55
srcsys 09:00:17  1  1 134020   3500  15456  49788    0    0  1184     0  743 1321 17 30  0 53
srcsys 09:00:18  0  2 134028   3068  16636  47840    0    8  1196     8  648 1298 10 39  0 51
srcsys 09:00:19  0  2 134048   3256  17512  45948    0   20  1220    20  647 1341 13 36  0 52
srcsys 09:00:20  1  1 134096   3208  18660  44476    0   48  1152   136  580 1185 11 32  0 58
srcsys 09:00:21  0  2 134120   3664  19760  42308    0   24  1212    24  549 1143  8 37  0 55
srcsys 09:00:22  2  2 134120   3100  20440  41536   32    8   732     8  460  825  6 21  0 73
srcsys 09:00:23  0  2 134140   3796  21020  40440    0   20   644    24  450  843  9 24  0 67
srcsys 09:00:24  0  2 134140   3864  21624  39724    0    0   620     0  531  970 10 26  0 64
srcsys 09:00:25  0  2 134140   4012  22196  39172    0    0   616     0  562 1018  9 30  0 61
srcsys 09:00:26  1  1 134140   3236  22972  38640    0    0   836    16  785 1344 15 35  0 50
srcsys 09:00:27  0  2 134168   3768  23584  37184    0   28   868    80  579 1092 13 35  0 52
srcsys 09:00:28  0  2 134180   3592  24336  36288    0   12   764    12  569 1044 13 28  0 59
srcsys 09:00:29  4  1 134216   5824  25220  32484    0   36  1020    36  776 1395 13 33  0 54
srcsys 09:00:30  0  2 134216   3872  27148  32084    0    0  2032     0  812 2101 10 43  0 47
srcsys 09:00:31  0  2 134216   3236  28204  31344    0    0  1080     0  718 1345 17 33  0 49
srcsys 09:00:32  1  1 134216   3248  28956  29612    0    0   780    24  742 1327 14 44  0 43
srcsys 09:00:33  0  2 134216   6628  28520  26664    0    0   976    12  769 1407 13 53  0 34
srcsys 09:00:34  4  2 134216   6020  28380  26408    0    0  1516     0  696 1395 13 36  0 51
srcsys 09:00:35  0  2 134220   5316  27552  26408    0    4   788     4  584  989 20 43  0 36
srcsys 09:00:36  2  3 134224   4288  27796  26428  124    4  1368     4  728 1468 12 40  0 48
srcsys 09:00:37 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 09:00:37  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 09:00:37  1  2 134224   4416  27732  26544  132    0  1292     0  623 1232 11 36  0 53
srcsys 09:00:38  0  2 134224   3852  27784  26496    0    0   708   112  648 1093 11 35  0 55
srcsys 09:00:39  1  1 134224   3896  27844  26148    0    0  1604     0  797 1611 16 48  0 36
srcsys 09:00:40  0  5 134280   3656  28044  25836    0   56  1468    56  697 1491 12 32  0 56
srcsys 09:00:41  1  1 134376   4368  26992  26356    0   96  1868    96  649 1107 22 48  0 29
srcsys 09:00:42  1  2 134412   4656  25144  29088    0   36  3636    40  648  531 63 25  0 12
srcsys 09:00:43  1  1 134420   4244  24608  30392    0    8  1544    72  644  550 66 25  0  9
srcsys 09:00:44  3  1 134420   3568  23832  31560    0    0  1244     0  727  496 74 21  0  5
srcsys 09:00:45  0  2 134420   3068  23356  33488    0    0  1956     0  679  523 73 18  0  9
srcsys 09:00:46  1  1 134420   3064  22096  34784    0    0  2892     0  677 1539 21 41  0 38
srcsys 09:00:47  2  1 134420   3100  21528  34288    0    0  2440     0 1133 2960 21 63  0 16
srcsys 09:00:48  1  1 134420   3528  22028  33300    0    0  1864    48 1480 3078 22 66  0 12
srcsys 09:00:49  2  2 134420   3024  22924  32696    0    0  2056     0 1579 3283 27 58  0 15
srcsys 09:00:50  1  1 134420   3156  23684  31976    0    0  2152     0 1480 3168 22 64  0 14
srcsys 09:00:51  0  2 134420   3356  24432  31204    0    0  1228     4  933 1810 12 45  0 43
srcsys 09:00:52  0  1 134420   7260  24668  32732    0    0  3056     0  758 1056 24 36  0 40
srcsys 09:00:53  3  1 134420   3088  24540  37508    0    0 10904     0  408  371 59 30  0 11
srcsys 09:00:54  2  1 134420   3104  19372  44112    0    0 10264     0  430  411 64 22  0 14
srcsys 09:00:55  1  1 134420   4212  18200  44496    0    0  1848    44  614 1133 23 30  0 47
srcsys 09:00:56  1  2 134420   4652  16192  46348   36    0  2376     0  835  725 59 28  0 13
srcsys 09:00:57  1  1 134420   4332  15960  47908   32    0  3996     0  723  763 47 30  0 23
srcsys 09:00:58 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 09:00:58  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 09:00:58  3  1 134420   5312  15956  47136    0    0  1804     0  771  823 53 28  0 19
srcsys 09:00:59  2  1 134420   5676  15972  48184    0    0  1984     0  780  716 65 17  0 18
srcsys 09:01:00  2  0 134420   5160  15980  49040    0    0  1152   176  706  515 76 21  0  3
srcsys 09:01:01  2  1 134420   4020  16020  50164    0    0  1164     0  720  543 79 20  0  1
srcsys 09:01:02  4  2 134420   3636  16056  50452    0    0  4008     0  807  672 69 29  0  2
srcsys 09:01:03  2  1 134420   3212  16032  50508    0    0  2212     4  677  591 83 16  0  1
srcsys 09:01:04  0  3 134420   4508  16084  51444    0    0  4396    48  729  786 57 30  0 13
srcsys 09:01:05  3  1 134416   5480  16112  51564   32    0  1812    24  547 1090 66 33  0  1
srcsys 09:01:06  2  0 134416   4416  16120  53008    0    0  1376   280  699  703 76 19  0  5
srcsys 09:01:07  2  1 134416   3424  16120  54020    0    0  1108    16  679  552 81 17  0  2
srcsys 09:01:08  1  1 134416   6172  15448  53428    0    0  5956   260  539  455 65 29  0  6
srcsys 09:01:09  3  1 134416   4928  15244  54672    0    0  5116     0  772  445 62 30  0  8
srcsys 09:01:10  1  2 134416   5104  15248  55336    0    0  2824     0  954  490 62 38  0  0
srcsys 09:01:11  1  1 134408   6072  15244  56096    0    0  2436     0  894  530 60 39  0  1
srcsys 09:01:12  2  1 134408   4708  15260  57576    0    0  2920    40  922  582 65 35  0  0
srcsys 09:01:13  1  1 134408   4888  15256  57548    0    0  2564     0  920  544 64 36  0  0
srcsys 09:01:14  3  1 134404   4732  15224  57424   68    0  2412     8  909  700 68 32  0  0
srcsys 09:01:15  0  4 134396   4928  15304  57304   64    0  3208   168  879  715 57 37  0  6
srcsys 09:01:16  1  3 134344   6244  15200  56588  116    0  5248     0  424  518 46 26  0 29
srcsys 09:01:17  1  1 134344   4852  15208  58264    0    0  5076     0  372  464 64 17  0 18
srcsys 09:01:18  3  1 134336   5708  15224  57592    0    0  4912     0  418  516 74 16  0 10
srcsys 09:01:19 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 09:01:19  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 09:01:19  3  2 134332   7628  15312  57172   32    0  5820   244  394  518 78 19  0  3
srcsys 09:01:20  3  1 134320   5372  15316  59500    0    0  5600     0  388  647 82 18  0  0
srcsys 09:01:21  2  1 134320   6276  15284  58864    0    0  7300     0  443  405 66 24  0 10
srcsys 09:01:22  3  1 134320   6020  15268  58896    0    0  1160     0  701  512 80 18  0  2
srcsys 09:01:23  1  1 134320   6456  15236  58932    0    0  1152     0  723  519 86 12  0  2
srcsys 09:01:24  1  2 134316   4592  15256  61048    4    0  2644   176  592  623 61 26  0 13
srcsys 09:01:25  2  1 134316   3164  15120  61556    0    0  4568     0  386  660 60 26  0 14
srcsys 09:01:26  4  1 134316   3424  14916  61972    0    0  5868   104  408  556 80 20  0  0
srcsys 09:01:27  1  2 134316   4396  14760  62644    0    0  7048     0  351  380 81 19  0  0
srcsys 09:01:28  3  0 134316   7780  14696  60960    0    0  3092   292  468  597 76 24  0  0
srcsys 09:01:29  3  0 134316   7120  14696  61764    0    0   804     0  530  488 80 20  0  0
srcsys 09:01:30  3  0 134316   5784  14696  62660    0    0   896     0  690  485 88 12  0  0
srcsys 09:01:31  1  0 134316   5320  14696  63552    0    0   892     0  733  485 81 18  0  1
srcsys 09:01:32  2  1 134316   4048  14704  64528    0    0  1784     0  662  501 75 22  0  3
srcsys 09:01:33  2  0 134316   4276  14712  64812    0    0  1360    96  730  553 82 17  0  1
srcsys 09:01:34  3  1 134316   3620  14712  65288    0    0  1024     0  685  506 79 20  0  1
srcsys 09:01:35  2  1 134316   5116  14712  63928    0    0  1152     0  763  509 87 11  0  2
srcsys 09:01:36  2  1 134316   5636  14720  64072    0    0  1492     0  714  583 77 22  0  1
srcsys 09:01:37  1  0 134316   5424  14720  64284    0    0  1152     0  691  520 79 20  0  1
srcsys 09:01:38  1  0 134316   4464  14720  65180    0    0   896     0  698  514 81 19  0  0
srcsys 09:01:39  3  1 134316   3420  14720  66064    0    0  1280     0  725  503 82 17  0  1
srcsys 09:01:40 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
srcsys 09:01:40  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
srcsys 09:01:40  3  1 134316   6104  14732  64088    0    0  1156    88  748  535 86 13  0  1
srcsys 09:01:41  0  2 134316   6684  14732  63808    0    0  1056     0  708  524 83 16  0  1
srcsys 09:01:42  2  1 134316   6968  14728  63372    0    0   908     0  699  541 79 19  0  2
srcsys 09:01:43  1  0 134316   7088  14724  63360    0    0  1156     0  697  526 75 20  0  5
srcsys 09:01:45  3  0 134316   5692  14728  64548    0    0  1192     0  740  478 84 12  0  4
srcsys 09:01:46  2  0 134316   4868  14732  65700    0    0  1156     0  724  508 75 20  0  5
srcsys 09:01:47  1  0 134316   3668  14744  66852    0    0  1156    28  699  501 72 24  0  4
srcsys 09:01:48  2  1 134316   4920  14728  65776    0    0   964     0  697  517 78 21  0  1
srcsys 09:01:49  4  1 134316   5172  14712  65312    0    0   876     0  716  525 79 19  0  2
srcsys 09:01:50  2  2 134316  12608  14788  66644  152    0  2236     0  439  590 15 18  1 66
srcsys 09:01:51  0  2 134316   8564  14984  69244  396    0  3188     0  458  638 19 18  0 62
srcsys 09:01:52  1  0 134304  12856  15172  70260    0    0  1196   128  393  952 29 33  7 31
srcsys 09:01:53  3  1 134304  11488  15252  70628    4    0   396   148  405 1099 42 37  5 16
srcsys 09:01:54  2  0 134304  11624  15328  70664   12    0   116   
-------------- next part --------------
srcsys 08:59:59 13811 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:00 13815 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:01 13819 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:02 13826 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:03 13830 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:04 13834 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:05 13838 pts/1    S+     0:00              \_ grep rsync
srcsys 09:00:07 13848 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:07 13846 ?        Ds     0:00      \_ rsync --server --daemon .
srcsys 09:00:08 13852 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:08 13846 ?        Ds     0:00      \_ rsync --server --daemon .
srcsys 09:00:09 13856 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:09 13846 ?        Rs     0:00      \_ rsync --server --daemon .
srcsys 09:00:10 13860 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:10 13846 ?        Ds     0:01      \_ rsync --server --daemon .
srcsys 09:00:11 13864 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:11 13846 ?        Ds     0:01      \_ rsync --server --daemon .
srcsys 09:00:13 13868 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:13 13846 ?        Ds     0:01      \_ rsync --server --daemon .
srcsys 09:00:14 13872 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:14 13846 ?        Ds     0:02      \_ rsync --server --daemon .
srcsys 09:00:15 13876 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:15 13846 ?        Ds     0:02      \_ rsync --server --daemon .
srcsys 09:00:16 13880 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:16 13846 ?        Rs     0:02      \_ rsync --server --daemon .
srcsys 09:00:18 13885 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:18 13846 ?        Ds     0:03      \_ rsync --server --daemon .
srcsys 09:00:19 13889 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:19 13846 ?        Ds     0:03      \_ rsync --server --daemon .
srcsys 09:00:20 13893 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:20 13846 ?        Ds     0:03      \_ rsync --server --daemon .
srcsys 09:00:21 13897 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:21 13846 ?        Ds     0:03      \_ rsync --server --daemon .
srcsys 09:00:22 13901 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:22 13846 ?        Ds     0:04      \_ rsync --server --daemon .
srcsys 09:00:24 13905 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:24 13846 ?        Ds     0:04      \_ rsync --server --daemon .
srcsys 09:00:25 13909 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:25 13846 ?        Ds     0:04      \_ rsync --server --daemon .
srcsys 09:00:26 13913 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:26 13846 ?        Rs     0:04      \_ rsync --server --daemon .
srcsys 09:00:27 13917 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:27 13846 ?        Ds     0:05      \_ rsync --server --daemon .
srcsys 09:00:28 13921 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:28 13846 ?        Ds     0:05      \_ rsync --server --daemon .
srcsys 09:00:30 13925 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:30 13846 ?        Ds     0:05      \_ rsync --server --daemon .
srcsys 09:00:31 13929 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:31 13846 ?        Ds     0:05      \_ rsync --server --daemon .
srcsys 09:00:32 13933 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:32 13846 ?        Rs     0:06      \_ rsync --server --daemon .
srcsys 09:00:33 13937 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:33 13846 ?        Ds     0:06      \_ rsync --server --daemon .
srcsys 09:00:35 13941 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:35 13846 ?        Ds     0:07      \_ rsync --server --daemon .
srcsys 09:00:36 13945 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:36 13846 ?        Ds     0:07      \_ rsync --server --daemon .
srcsys 09:00:37 13950 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:37 13846 ?        Ds     0:07      \_ rsync --server --daemon .
srcsys 09:00:38 13954 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:38 13846 ?        Ds     0:08      \_ rsync --server --daemon .
srcsys 09:00:39 13958 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:39 13846 ?        Ds     0:08      \_ rsync --server --daemon .
srcsys 09:00:41 13962 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:41 13846 ?        Rs     0:09      \_ rsync --server --daemon .
srcsys 09:00:42 13966 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:42 13846 ?        Rs     0:09      \_ rsync --server --daemon .
srcsys 09:00:43 13970 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:43 13846 ?        Rs     0:10      \_ rsync --server --daemon .
srcsys 09:00:44 13974 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:44 13846 ?        Rs     0:11      \_ rsync --server --daemon .
srcsys 09:00:46 13978 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:46 13846 ?        Rs     0:11      \_ rsync --server --daemon .
srcsys 09:00:47 13982 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:47 13846 ?        Rs     0:12      \_ rsync --server --daemon .
srcsys 09:00:48 13986 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:48 13846 ?        Rs     0:12      \_ rsync --server --daemon .
srcsys 09:00:50 13990 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:50 13846 ?        Rs     0:13      \_ rsync --server --daemon .
srcsys 09:00:51 13994 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:51 13846 ?        Ds     0:13      \_ rsync --server --daemon .
srcsys 09:00:52 13998 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:52 13846 ?        Rs     0:14      \_ rsync --server --daemon .
srcsys 09:00:53 14002 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:53 13846 ?        Rs     0:15      \_ rsync --server --daemon .
srcsys 09:00:55 14006 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:55 13846 ?        Ds     0:15      \_ rsync --server --daemon .
srcsys 09:00:56 14010 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:56 13846 ?        Rs     0:16      \_ rsync --server --daemon .
srcsys 09:00:57 14015 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:57 13846 ?        Rs     0:16      \_ rsync --server --daemon .
srcsys 09:00:58 14019 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:00:58 13846 ?        Rs     0:17      \_ rsync --server --daemon .
srcsys 09:01:00 14023 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:00 13846 ?        Rs     0:18      \_ rsync --server --daemon .
srcsys 09:01:01 14027 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:01 13846 ?        Rs     0:18      \_ rsync --server --daemon .
srcsys 09:01:03 14031 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:03 13846 ?        Rs     0:19      \_ rsync --server --daemon .
srcsys 09:01:04 14037 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:04 13846 ?        Ds     0:20      \_ rsync --server --daemon .
srcsys 09:01:06 14042 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:06 13846 ?        Rs     0:20      \_ rsync --server --daemon .
srcsys 09:01:07 14046 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:07 13846 ?        Rs     0:21      \_ rsync --server --daemon .
srcsys 09:01:08 14050 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:08 13846 ?        Rs     0:22      \_ rsync --server --daemon .
srcsys 09:01:10 14054 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:10 13846 ?        Ss     0:22      \_ rsync --server --daemon .
srcsys 09:01:11 14058 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:11 13846 ?        Ss     0:22      \_ rsync --server --daemon .
srcsys 09:01:12 14062 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:12 13846 ?        Ss     0:22      \_ rsync --server --daemon .
srcsys 09:01:13 14066 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:13 13846 ?        Ss     0:23      \_ rsync --server --daemon .
srcsys 09:01:15 14070 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:15 13846 ?        Ss     0:23      \_ rsync --server --daemon .
srcsys 09:01:16 14077 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:16 13846 ?        Rs     0:23      \_ rsync --server --daemon .
srcsys 09:01:17 14083 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:17 13846 ?        Rs     0:24      \_ rsync --server --daemon .
srcsys 09:01:19 14087 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:19 13846 ?        Rs     0:24      \_ rsync --server --daemon .
srcsys 09:01:20 14092 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:20 13846 ?        Rs     0:24      \_ rsync --server --daemon .
srcsys 09:01:21 14096 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:21 13846 ?        Rs     0:25      \_ rsync --server --daemon .
srcsys 09:01:23 14100 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:23 13846 ?        Rs     0:26      \_ rsync --server --daemon .
srcsys 09:01:24 14104 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:24 13846 ?        Rs     0:27      \_ rsync --server --daemon .
srcsys 09:01:25 14112 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:25 13846 ?        Rs     0:27      \_ rsync --server --daemon .
srcsys 09:01:27 14116 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:27 13846 ?        Rs     0:28      \_ rsync --server --daemon .
srcsys 09:01:28 14120 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:28 13846 ?        Rs     0:28      \_ rsync --server --daemon .
srcsys 09:01:29 14124 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:29 13846 ?        Rs     0:29      \_ rsync --server --daemon .
srcsys 09:01:31 14128 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:31 13846 ?        Rs     0:29      \_ rsync --server --daemon .
srcsys 09:01:32 14132 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:32 13846 ?        Rs     0:30      \_ rsync --server --daemon .
srcsys 09:01:33 14136 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:33 13846 ?        Rs     0:31      \_ rsync --server --daemon .
srcsys 09:01:34 14140 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:34 13846 ?        Rs     0:32      \_ rsync --server --daemon .
srcsys 09:01:36 14144 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:36 13846 ?        Rs     0:32      \_ rsync --server --daemon .
srcsys 09:01:37 14149 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:37 13846 ?        Rs     0:33      \_ rsync --server --daemon .
srcsys 09:01:38 14153 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:38 13846 ?        Rs     0:34      \_ rsync --server --daemon .
srcsys 09:01:40 14157 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:40 13846 ?        Rs     0:35      \_ rsync --server --daemon .
srcsys 09:01:41 14161 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:41 13846 ?        Rs     0:35      \_ rsync --server --daemon .
srcsys 09:01:42 14165 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:42 13846 ?        Rs     0:36      \_ rsync --server --daemon .
srcsys 09:01:43 14169 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:43 13846 ?        Rs     0:37      \_ rsync --server --daemon .
srcsys 09:01:45 14173 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:45 13846 ?        Rs     0:38      \_ rsync --server --daemon .
srcsys 09:01:46 14177 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:46 13846 ?        Rs     0:38      \_ rsync --server --daemon .
srcsys 09:01:47 14181 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:47 13846 ?        Rs     0:39      \_ rsync --server --daemon .
srcsys 09:01:49 14185 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:49 13846 ?        Ds     0:40      \_ rsync --server --daemon .
srcsys 09:01:50 14190 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:51 14198 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:52 14213 pts/1    S+     0:00  |           \_ grep rsync
srcsys 09:01:52 14211 ?        Ds     0:00      \_ rsync --server --daemon .
srcsys 09:01:53 14229 pts/1    S+     0:00              \_ grep rsync
srcsys 09:01:55 14235 pts/1    S+     0:00              \_ grep rsync
srcsys 09:01:56 14239 pts/1    S+     0:00              \_ grep rsync
srcsys 09:01:57 14244 pts/1    S+     0:00              \_ grep rsync
srcsys 09:01:58 14248 pts/1    S+     0:00              \_ grep rsync
srcsys 09:01:59 14256 pts/1    S+     0:00              \_ grep rsync
-------------- next part --------------
destsys 09:00:00 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:00:00  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:00:00  1  0      0 180240 1027992 1571208    0    0   103    48   23   30  0  0 99  0
destsys 09:00:01  0  0      0 180116 1027992 1571208    0    0     0     0  216  177  0  0 100  0
destsys 09:00:02  0  0      0 180092 1027992 1571240    0    0    32     0  320  292  0  0 99  1
destsys 09:00:03  0  0      0 180092 1027992 1571240    0    0     0     0  381  283  0  0 100  0
destsys 09:00:04  0  0      0 180232 1027992 1571244    0    0     0     0  370  383  0  1 99  0
destsys 09:00:05  0  0      0 180332 1027992 1571244    0    0     0     0  217  123  0  0 100  0
destsys 09:00:06  0  0      0 179140 1028000 1571236    0    0     0    28  299  354  0  1 99  1
destsys 09:00:07  0  0      0 178764 1028004 1571236    0    0     0     0  241  178  0  0 100  0
destsys 09:00:08  0  1      0 177128 1028596 1571216    0    0     8    52  326  319  0  1 81 18
destsys 09:00:09  0  1      0 175748 1029216 1571228    0    0   184     0  846 1173  0  1 96  2
destsys 09:00:10  0  0      0 173864 1030232 1571364    0    0     8     0  792 1165  0  2 98  0
destsys 09:00:11  0  2      0 171748 1031084 1571424    0    0     4  4864 1245 1093  0  2 96  1
destsys 09:00:12  0  0      0 170624 1032092 1571544    0    0     4    24  964 1257  1  1 97  2
destsys 09:00:13  0  0      0 170252 1032852 1571396    0    0    16     0  447  543  0  2 98  0
destsys 09:00:14  0  0      0 169500 1033208 1571412    0    0     4    12  344  354  0  1 99  1
destsys 09:00:15  0  0      0 169360 1033624 1571452    0    0     4     0  501  571  0  1 99  0
destsys 09:00:16  0  2      0 167988 1034176 1571528    0    0     4  5252 1153  593  0  2 97  1
destsys 09:00:17  0  0      0 167120 1034972 1571480    0    0     0     0  685  971  1  1 98  0
destsys 09:00:18  0  0      0 166996 1035268 1571484    0    0     4     0  544  707  0  1 98  0
destsys 09:00:19  0  0      0 166392 1035696 1571420    0    0     0    12  564  631  0  1 98  1
destsys 09:00:20  0  0      0 164896 1036816 1571368    0    0     8    12  551  747  0  1 98  1
destsys 09:00:21 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:00:21  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:00:21  2  1      0 162292 1036968 1571532    0    0     0  5248  732  323  0  2 98  0
destsys 09:00:22  0  0      0 160424 1040188 1571484    0    0     0     4  363  354  0  1 98  1
destsys 09:00:23  0  0      0 160184 1040336 1571432    0    0     0     0  502  667  0  1 99  0
destsys 09:00:24  1  0      0 159928 1040440 1571360    0    0     0     0  452  612  0  0 99  0
destsys 09:00:25  0  0      0 159556 1040464 1571496    0    0     0    16  700  902  0  1 99  0
destsys 09:00:26  1  1      0 157860 1040556 1571540    0    0     0  4840  917  864  1  1 97  1
destsys 09:00:27  0  0      0 158604 1040844 1571520    0    0     4     4 1005 1386  0  2 97  1
destsys 09:00:28  0  0      0 158728 1040976 1571456    0    0     0     0  461  476  1  0 99  0
destsys 09:00:29  0  0      0 158472 1041188 1571376    0    0     0    36  646  865  0  0 99  0
destsys 09:00:30  0  0      0 157728 1041584 1571484    0    0     0     0  737  947  1  1 98  0
destsys 09:00:31  0  0      0 156488 1042496 1571528    0    0     0     0  669  881  0  1 99  0
destsys 09:00:32  0  0      0 154264 1044104 1571560    0    0     4  5624 1404 1256  0  3 95  2
destsys 09:00:33  0  0      0 153520 1044468 1571504    0    0     0    36  806 1034  0  1 99  0
destsys 09:00:34  0  0      0 152008 1044984 1571568    0    0     4     0  771  992  0  1 99  0
destsys 09:00:35  0  0      0 150668 1045112 1571524    0    0     0     0  388  487  0  1 99  0
destsys 09:00:36  0  0      0 148684 1045500 1571568    0    0    12     0  551  693  0  2 97  1
destsys 09:00:37  0  0      0 147072 1046488 1571572    0    0     0  7424 1073  874  0  3 95  3
destsys 09:00:38  0  0      0 146080 1047064 1571484    0    0     4     0  571  768  0  1 99  0
destsys 09:00:39  0  0      0 162572 1046896 1560208    0    0     0     0  609  828  0  1 99  0
destsys 09:00:40  0  0      0 161704 1047304 1559796    0    0     0     0  511  640  0  1 98  0
destsys 09:00:41  1  1      0 159100 1047532 1559876    0    0    36  8092 1117  505  0  3 94  2
destsys 09:00:42 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:00:42  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:00:42  2  1      0 130812 1047620 1588348    0    0 26360  5188 2108 1222  3  8 81  8
destsys 09:00:43  0  0      0 196044 1044688 1551616    0    0 24812    12 1414 1765  3  8 84  5
destsys 09:00:44  0  0      0 194244 1044696 1552960    0    0     0    12  843 1217  0  1 98  1
destsys 09:00:45  0  0      0 193616 1044696 1553680    0    0     0     0  905 1294  1  0 99  0
destsys 09:00:46  1  1      0 182960 1044696 1556112    0    0     0 27276 1568 1497  0  3 96  1
destsys 09:00:47  0  0      0 185812 1047688 1557244    0    0     4  1944 1014  334  0  7 89  4
destsys 09:00:48  0  0      0 182960 1048808 1557380    0    0   172     8 1531 2435  0  1 98  1
destsys 09:00:49  0  0      0 181100 1050452 1557188    0    0    28    12 1892 2881  1  1 97  1
destsys 09:00:50  0  0      0 178992 1051940 1557452    0    0     0     0 1840 2848  1  1 99  0
destsys 09:00:51  0  0      0 177132 1053588 1557404    0    0     0     0 1912 2993  0  1 99  0
destsys 09:00:52  0  0      0 175256 1054456 1557404    0    0     0 10396 1826 1408  0  4 95  1
destsys 09:00:53  0  0      0 217480 1015088 1572548    0    0 23264     0 1285 1623  2  8 84  7
destsys 09:00:54  0  0      0 207668 1015088 1583340    0    0     0     0  206  187  1  1 98  0
destsys 09:00:55  0  0      0 196756 1015096 1594204    0    0     0    12  359  424  1  1 97  1
destsys 09:00:56  1  1      0 196600 1001268 1609220    0    0 17448 37316 1382 1754  6  7 82  5
destsys 09:00:57  0  0      0 204052 987108 1625480    0    0 16032  3232 1950 1613  2 13 65 20
destsys 09:00:58  0  0      0 201696 987108 1627908    0    0    76     0  975 1327  1  1 95  3
destsys 09:00:59  0  0      0 200704 987108 1629432    0    0     0     0 1033 1536  1  1 99  0
destsys 09:01:00  0  0      0 199216 987116 1631440    0    0     0    12  904 1309  0  1 98  1
destsys 09:01:01  1  0      0 195644 987116 1632468    0    0     0 11024 1236 1349  1  1 98  0
destsys 09:01:02  0  0      0 197240 987132 1633608    0    0    52   140 1872 1391  1  3 93  3
destsys 09:01:03 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:01:03  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:01:03  0  0      0 195868 987132 1634516    0    0     0     0  735 1093  1  1 99  0
destsys 09:01:04  0  0      0 195000 987132 1635300    0    0     0     0  661  985  0  1 99  0
destsys 09:01:05  1  1      0 194512 987140 1635788    0    0     0    12  519  748  1  0 99  0
destsys 09:01:06  0  2      0 184488 987180 1636844    0    0   604  1960 1362 2438  2  2 79 18
destsys 09:01:07  3  0      0 185852 987188 1637768    0    0     0    12 1238 1760  0  1 77 22
destsys 09:01:08  0  0      0 186876 987196 1638776    0    0     0   148 1074 1402  0  0 98  1
destsys 09:01:09  0  0      0 183056 987196 1642748    0    0     0     4  367  429  1  1 99  0
destsys 09:01:10  0  0      0 200168 970228 1648692    0    0     0     0 1244 1909  2  1 97  0
destsys 09:01:11  0  0      0 198184 970244 1651636    0    0     0    44 1729 2661  2  1 95  2
destsys 09:01:12  0  0      0 196192 970252 1654116    0    0     4    32 1521 2344  2  0 96  2
destsys 09:01:13  0  0      0 193892 970260 1656496    0    0     0    76 1416 2255  2  1 96  1
destsys 09:01:14  1  0      0 191040 970260 1658904    0    0     0     0 1456 2322  2  1 98  0
destsys 09:01:15  0  0      0 188684 970260 1661164    0    0     0     0 1222 1947  1  1 98  0
destsys 09:01:16  2  0      0 185824 970260 1663020    0    0     0 31684 1160 1770  1  1 98  0
destsys 09:01:17  0  0      0 183444 970276 1666128    0    0     0    80  366  167  0  8 90  2
destsys 09:01:18  0  0      0 205828 953120 1668252    0    0     0     0  206  191  1  1 98  0
destsys 09:01:19  0  0      0 205324 953128 1669192    0    0     0    88  241  235  0  1 99  0
destsys 09:01:20  0  0      0 200496 953128 1673812    0    0     0     0  195  109  0  1 99  0
destsys 09:01:21  1  0      0 190204 953128 1682976    0    0     0  8760  149   90  0  2 98  0
destsys 09:01:22  0  0      0 213192 935100 1688452    0    0     0     0  579  698  1  3 96  0
destsys 09:01:23  0  0      0 212648 935116 1689372    0    0     0   144  960 1371  1  1 97  2
destsys 09:01:24 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:01:24  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:01:24  0  0      0 212028 935116 1690612    0    0     0     0 1043 1505  1  0 99  0
destsys 09:01:25  0  0      0 211012 935116 1691160    0    0     0     0  512  674  1  0 99  0
destsys 09:01:26  0  0      0 207308 935116 1695748    0    0     0     0  145  101  0  1 99  0
destsys 09:01:27  0  0      0 202696 935116 1700348    0    0     0     0  130   82  0  1 99  0
destsys 09:01:28  0  0      0 193256 935124 1709636    0    0     8    28  200  143  1  1 95  4
destsys 09:01:29  0  0      0 190776 935132 1712348    0    0     0    12  403  540  1  1 98  1
destsys 09:01:30  0  0      0 210120 920416 1712596    0    0     0     0  624  853  0  1 99  0
destsys 09:01:31  3  0      0 207896 920416 1713340    0    0     0 42208  941 1320  1  1 98  0
destsys 09:01:32  0  0      0 207364 920416 1714156    0    0    20 15028 1443 1460  1 14 81  5
destsys 09:01:33  0  0      0 206148 920432 1716376    0    0     0    52  786 1189  1  1 98  1
destsys 09:01:34  0  0      0 205396 920432 1717356    0    0     0     0  878 1351  0  1 99  0
destsys 09:01:35  0  0      0 204172 920440 1718316    0    0     0    12  912 1377  1  1 98  1
destsys 09:01:36  0  0      0 203536 920440 1719556    0    0     0     0  987 1462  1  0 99  0
destsys 09:01:37  0  0      0 202312 920440 1720848    0    0     0     0  881 1340  1  1 99  0
destsys 09:01:38  0  0      0 201040 920448 1721776    0    0     0    32  968 1397  0  1 98  2
destsys 09:01:39  0  0      0 199692 920448 1722780    0    0     0     0  951 1361  1  0 99  0
destsys 09:01:40  0  0      0 198792 920448 1724068    0    0     0     0  918 1371  1  1 99  0
destsys 09:01:41  0  0      0 197576 920456 1725292    0    0     0    12 1035 1528  1  1 98  1
destsys 09:01:42  0  0      0 197072 920456 1726320    0    0     0     0 1031 1379  0  1 99  0
destsys 09:01:43  0  0      0 195716 920464 1727264    0    0     0    76  885 1357  1  1 98  1
destsys 09:01:44  0  0      0 194724 920468 1728220    0    0     0     0  888 1320  1  0 99  0
destsys 09:01:45 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
destsys 09:01:45  r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa
destsys 09:01:45  0  0      0 193724 920468 1729340    0    0     0     0  930 1398  0  0 99  0
destsys 09:01:46  0  0      0 192368 920476 1730480    0    0     0    24  972 1434  1  1 98  1
destsys 09:01:47  0  0      0 211588 906460 1730788    0    0     0     0  871 1314  1  1 99  0
destsys 09:01:48  0  0      0 210736 906468 1731864    0    0     0    40  957 1381  1  0 98  2
destsys 09:01:49  0  0      0 209356 906468 1733164    0    0     0     4  884 1353  1  1 99  0
destsys 09:01:50  0  0      0 223128 906660 1734696    0    0   996     0  579  676  0  1 93  6
destsys 09:01:51  0  0      0 223244 906668 1734892    0    0     0    12  156   97  0  1 99  1
destsys 09:01:52  0  0      0 223376 906700 1734900    0    0     0     0  472  299  1  0 99  0
destsys 09:01:53  0  0      0 223096 906724 1734900    0    0    28   336  379  291  0  1 97  2
destsys 09:01:54  0  0      0 223804 906744 1735016    0    0    36    40  380  316  0  0 98  1
destsys 09:01:55  0  0      0 223804 906744 173
-------------- next part --------------
destsys 09:00:02 15139 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:03 15143 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:04 15147 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:05 15151 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:06 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:06 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:06 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:06 15189 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:07 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:07 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:07 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:07 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:07 15194 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:08 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:08 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:08 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:08 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:08 15198 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:09 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:09 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:09 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:09 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:09 15202 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:10 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:10 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:10 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:10 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:10 15206 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:11 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:11 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:11 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:11 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:11 15213 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:12 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:12 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:12 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:12 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:12 15217 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:13 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:13 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:13 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:13 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:13 15221 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:14 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:14 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:14 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:14 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:14 15225 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:15 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:15 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:15 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:15 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:15 15229 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:16 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:16 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:16 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:16 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:16 15233 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:17 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:17 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:17 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:17 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:17 15237 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:18 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:18 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:18 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:18 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:18 15241 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:19 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:19 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:19 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:19 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:19 15245 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:20 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:20 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:20 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:20 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:20 15249 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:21 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:21 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:21 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:21 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:21 15255 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:22 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:22 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:22 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:22 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:22 15259 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:23 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:23 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:23 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:23 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:23 15263 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:24 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:24 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:24 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:24 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:24 15267 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:25 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:25 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:25 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:25 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:25 15271 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:26 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:26 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:26 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:26 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:26 15275 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:27 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:27 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:27 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:27 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:27 15279 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:28 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:28 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:28 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:28 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:28 15283 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:29 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:29 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:29 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:29 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:29 15287 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:30 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:30 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:30 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:30 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:30 15291 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:31 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:31 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:31 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:31 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:31 15297 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:32 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:32 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:32 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:32 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:32 15301 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:33 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:33 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:33 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:33 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:33 15305 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:34 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:34 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:34 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:34 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:34 15309 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:35 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:35 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:35 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:35 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:35 15313 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:36 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:36 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:36 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:36 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:36 15317 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:37 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:37 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:37 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:37 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:37 15321 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:38 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:38 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:38 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:38 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:38 15325 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:39 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:39 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:39 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:39 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:39 15329 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:40 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:40 15186 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:40 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:40 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:40 15333 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:41 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:41 15186 pts/0    D+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:41 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:41 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:41 15339 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:42 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:42 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:42 15187 pts/0    R+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:42 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:42 15343 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:43 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:43 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:43 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:43 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:43 15347 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:44 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:44 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:44 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:44 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:44 15351 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:45 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:45 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:45 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:45 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:45 15355 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:46 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:46 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:46 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:46 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:46 15359 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:47 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:47 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:47 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:47 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:47 15363 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:48 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:48 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:48 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:48 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:48 15367 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:49 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:49 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:49 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:49 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:49 15371 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:50 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:50 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:50 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:50 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:50 15375 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:51 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:51 15186 pts/0    D+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:51 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:51 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:51 15381 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:52 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:52 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:52 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:52 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:52 15385 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:53 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:53 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:53 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:53 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:53 15389 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:54 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:54 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:54 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:54 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:54 15393 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:55 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:55 15186 pts/0    D+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:55 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:55 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:55 15398 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:56 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:56 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:56 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:56 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:56 15402 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:57 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:57 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:57 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:57 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:57 15406 pts/2    D+     0:00  |   \_ grep rsync
destsys 09:00:58 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:58 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:58 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:58 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:58 15410 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:00:59 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:00:59 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:59 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:00:59 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:00:59 15414 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:01 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:01 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:01 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:01 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:01 15418 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:02 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:02 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:02 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:02 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:02 15424 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:03 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:03 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:03 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:03 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:03 15428 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:04 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:04 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:04 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:04 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:04 15432 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:05 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:05 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:05 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:05 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:05 15436 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:06 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:06 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:06 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:06 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:06 15456 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:07 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:07 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:07 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:07 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:07 15460 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:08 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:08 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:08 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:08 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:08 15464 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:09 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:09 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:09 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:09 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:09 15468 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:10 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:10 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:10 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:10 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:10 15472 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:11 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:11 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:11 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:11 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:11 15476 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:12 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:12 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:12 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:12 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:12 15482 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:13 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:13 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:13 15187 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:13 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:13 15486 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:14 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:14 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:14 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:14 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:14 15490 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:15 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:15 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:15 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:15 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:15 15494 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:16 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:16 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:16 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:16 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:16 15499 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:17 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:17 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:17 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:17 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:17 15503 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:18 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:18 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:18 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:18 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:18 15507 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:19 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:19 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:19 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:19 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:19 15511 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:20 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:20 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:20 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:20 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:20 15515 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:21 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:21 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:21 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:21 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:21 15519 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:22 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:22 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:22 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:22 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:22 15525 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:23 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:23 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:23 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:23 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:23 15529 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:24 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:24 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:24 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:24 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:24 15533 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:25 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:25 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:25 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:25 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:25 15537 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:26 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:26 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:26 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:26 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:26 15541 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:27 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:27 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:27 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:27 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:27 15545 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:28 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:28 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:28 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:28 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:28 15549 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:29 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:29 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:29 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:29 15192 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:29 15553 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:30 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:30 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:30 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:30 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:30 15557 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:31 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:31 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:31 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:31 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:31 15563 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:32 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:32 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:32 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:32 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:32 15567 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:33 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:33 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:33 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:33 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:33 15571 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:34 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:34 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:34 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:34 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:34 15575 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:35 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:35 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:35 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:35 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:35 15579 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:36 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:36 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:36 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:36 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:36 15583 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:37 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:37 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:37 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:37 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:37 15587 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:38 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:38 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:38 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:38 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:38 15591 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:39 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:39 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:39 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:39 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:39 15595 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:40 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:40 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:40 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:40 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:40 15599 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:41 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:41 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:41 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:41 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:41 15605 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:42 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:42 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:42 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:42 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:42 15609 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:43 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:43 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:43 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:43 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:43 15613 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:44 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:44 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:44 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:44 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:44 15617 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:45 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:45 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:45 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:45 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:45 15621 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:46 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:46 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:46 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:46 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:46 15625 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:47 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:47 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:47 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:47 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:47 15629 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:48 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:48 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:48 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:48 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:48 15633 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:49 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:49 15186 pts/0    S+     0:01  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:49 15187 pts/0    S+     0:01  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:49 15192 pts/0    S+     0:01  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup// /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:49 15637 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:50 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:50 15643 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup//boot /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:50 15644 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:50 15646 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:51 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:51 15643 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --link-dest /srv/backups/janus/2013-11-13-02-08/ --link-dest /srv/backups/janus/2013-11-13-00-24/ root at janus.meme.com::pull-backup//boot /srv/backups/janus/2013-11-13-09-00/
destsys 09:01:51 15644 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:51 15652 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:52 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:52 15659 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --exclude=/debian/mirror/* --link-dest /srv/backups/janus/2013-11-13-02-08/srv --link-dest /srv/backups/janus/2013-11-13-00-24/srv root at janus.meme.com::pull-backup//srv/debian /srv/backups/janus/2013-11-13-09-00/srv
destsys 09:01:52 15660 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:52 15661 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --exclude=/debian/mirror/* --link-dest /srv/backups/janus/2013-11-13-02-08/srv --link-dest /srv/backups/janus/2013-11-13-00-24/srv root at janus.meme.com::pull-backup//srv/debian /srv/backups/janus/2013-11-13-09-00/srv
destsys 09:01:52 15663 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:53 15154 pts/0    S+     0:00  |           \_ /bin/sh /usr/local/sbin/rsync_backup --rkey /etc/rsync.d/slate_pull_key --pull janus.meme.com /etc/rsync.d/janus.secrets / /boot --exclude-here /debian/mirror/* /srv/debian --exclude-here /debian-multimedia/mirror/* /srv/debian-multimedia
destsys 09:01:53 15669 pts/0    S+     0:00  |               \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --exclude=/debian-multimedia/mirror/* --link-dest /srv/backups/janus/2013-11-13-02-08/srv --link-dest /srv/backups/janus/2013-11-13-00-24/srv root at janus.meme.com::pull-backup//srv/debian-multimedia /srv/backups/janus/2013-11-13-09-00/srv
destsys 09:01:53 15670 pts/0    S+     0:00  |                   \_ ssh -4l root -i /etc/rsync.d/slate_pull_key -4 -l root janus.meme.com rsync --server --daemon .
destsys 09:01:53 15671 pts/0    S+     0:00  |                   \_ rsync --rsh=ssh -4l root -i /etc/rsync.d/slate_pull_key --ipv4 --one-file-system --archive --hard-links --quiet --numeric-ids --sparse --exclude=/debian-multimedia/mirror/* --link-dest /srv/backups/janus/2013-11-13-02-08/srv --link-dest /srv/backups/janus/2013-11-13-00-24/srv root at janus.meme.com::pull-backup//srv/debian-multimedia /srv/backups/janus/2013-11-13-09-00/srv
destsys 09:01:53 15673 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:54 15678 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:55 15682 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:56 15686 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:57 15690 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:58 15694 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:01:59 15698 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:00 15702 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:01 15708 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:02 15712 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:03 15716 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:04 15720 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:05 15724 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:06 15728 pts/2    S+     0:00  |   \_ grep rsync
destsys 09:02:07 15732 pts/2    S+     0:00  |   \_ grep rsync


More information about the rsync mailing list