diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2010-08-24 11:34:29 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 13:04:38 +0100 |
commit | 084eb5a04dc684f5558401a2d77550d5dfc057b4 (patch) | |
tree | c6d71f2b2a71dbf4003ecc6968286d3006225e31 /meta/packages/rsync/rsync-2.6.9/rsyncd.conf | |
parent | 9f03fdd5c749cf7b9a971ffbf610bc4f001853af (diff) | |
download | poky-084eb5a04dc684f5558401a2d77550d5dfc057b4.tar.gz |
rsync: split GPLv2 version from GPLv3 by fixing the GPLv2 recipe
remove the "require rsync.inc", and copy the .inc file into the GPLv2 recipe,
and adjust it properly;
mkdir rsync-2.6.9 and copy files/rsyncd.conf into rsync-2.6.9/rsyncd.conf.
BTW: the .conf file originated from OE in 2006:
commit c2a4b021eb04924f8c8b0e0af1fac337a04cbcae
Author: Raymond Danks <raymond@edanks.com>
Date: Tue Apr 18 01:43:08 2006 +0000
rsync: Add rsyncd.conf
http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=c2a4b021eb04924f8c8b0e0af1fac337a04cbcae
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/packages/rsync/rsync-2.6.9/rsyncd.conf')
-rw-r--r-- | meta/packages/rsync/rsync-2.6.9/rsyncd.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/packages/rsync/rsync-2.6.9/rsyncd.conf b/meta/packages/rsync/rsync-2.6.9/rsyncd.conf new file mode 100644 index 0000000000..845f5b33f5 --- /dev/null +++ b/meta/packages/rsync/rsync-2.6.9/rsyncd.conf | |||
@@ -0,0 +1,15 @@ | |||
1 | # /etc/rsyncd.conf | ||
2 | |||
3 | # Minimal configuration file for rsync daemon | ||
4 | # See rsync(1) and rsyncd.conf(5) man pages for help | ||
5 | |||
6 | # This file is required by rsync --daemon | ||
7 | pid file = /var/run/rsyncd.pid | ||
8 | use chroot = yes | ||
9 | read only = yes | ||
10 | |||
11 | # Simple example for enabling your own local rsync server | ||
12 | #[everything] | ||
13 | # path = / | ||
14 | # comment = Everything except /etc exposed | ||
15 | # exclude = /etc | ||