Merge lp:~pfalcon/cbuild/cbuild-init.rsyncd-lava into lp:~linaro-toolchain-dev/cbuild/cbuild-init

Proposed by Paul Sokolovsky
Status: Merged
Approved by: Stevan Radaković
Approved revision: 27
Merged at revision: 27
Proposed branch: lp:~pfalcon/cbuild/cbuild-init.rsyncd-lava
Merge into: lp:~linaro-toolchain-dev/cbuild/cbuild-init
Diff against target: 42 lines (+32/-0)
2 files modified
rsyncd/rsyncd.conf (+30/-0)
rsyncd/rsyncd.sh (+2/-0)
To merge this branch: bzr merge lp:~pfalcon/cbuild/cbuild-init.rsyncd-lava
Reviewer Review Type Date Requested Status
Stevan Radaković Approve
Linaro Toolchain Developers Pending
Review via email: mp+150757@code.launchpad.net

Description of the change

These MR includes rsyncd config required for CBuild/LAVA integration support. The idea is that LAVA builds will use rsyncd-based transfers (via native rsync protocol) vs ssh-based rsync transfer which native cbuild uses.

To post a comment you must log in.
Revision history for this message
Stevan Radaković (stevanr) wrote :

Looks good so far.
Approve +1.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'rsyncd'
2=== added file 'rsyncd/rsyncd.conf'
3--- rsyncd/rsyncd.conf 1970-01-01 00:00:00 +0000
4+++ rsyncd/rsyncd.conf 2013-02-27 10:59:21 +0000
5@@ -0,0 +1,30 @@
6+[www]
7+ path = /home/cbuild/public_html
8+ use chroot = no
9+ read only = yes
10+[cbuild]
11+ path = /home/cbuild/.config/cbuild/
12+ use chroot = no
13+ read only = yes
14+ hosts allow = 172.16.0.0/12 192.168.0.0/16
15+[build]
16+ path = /home/cbuild/public_html/build
17+ use chroot = no
18+ read only = no
19+ write only = yes
20+ refuse options = delete
21+ hosts allow = 172.16.0.0/12 192.168.0.0/16
22+[binaries]
23+ path = /home/cbuild/public_html/binaries
24+ use chroot = no
25+ read only = no
26+# write only = yes
27+ refuse options = delete
28+ hosts allow = 172.16.0.0/12 192.168.0.0/16
29+[benchmarks]
30+ path = /home/cbuild/public_html/benchmarks/lava
31+ use chroot = no
32+ read only = no
33+ write only = yes
34+ refuse options = delete
35+ hosts allow = 172.16.0.0/12 192.168.0.0/16
36
37=== added file 'rsyncd/rsyncd.sh'
38--- rsyncd/rsyncd.sh 1970-01-01 00:00:00 +0000
39+++ rsyncd/rsyncd.sh 2013-02-27 10:59:21 +0000
40@@ -0,0 +1,2 @@
41+#!/bin/sh
42+rsync --daemon -v --config=./rsyncd.conf --port=2000

Subscribers

People subscribed via source and target branches