diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-11-27 11:25:52 +0000 |
|---|---|---|
| committer | Joe MacDonald <joe.macdonald@windriver.com> | 2012-11-27 14:43:59 -0500 |
| commit | 3d851fe4cec6f3c166c9fb76e767265dbeab5b69 (patch) | |
| tree | 5854ed85ec3f992d2a96df1f066344c77dc06e55 /meta-networking/recipes-daemons/proftpd/files/basic.conf.patch | |
| parent | 3761a24e1c25fd388f70aec4f1f7b81d89e3caad (diff) | |
| download | meta-openembedded-3d851fe4cec6f3c166c9fb76e767265dbeab5b69.tar.gz | |
proftpd: add from meta-baryon
This was originally from OE-Classic. Improvements over the OE-Classic
recipe for reference:
* Update to 1.3.4b
* Add workaround for proftpd host IP resolution
* Add initscript, borrowed from Debian with some modifications for
compatibility and handling for hardcoded paths
* Use autotools.bbclass and remove unnecessary configure options
* PARALLEL_MAKE = "" is no longer needed, the bug was fixed in 1.3.3c
* Set SUMMARY (which sets DESCRIPTION) and base it on the short
description from the website
* Use useradd.bbclass to add ftp user/group
* Add HOMEPAGE
* Add/fix description in some patches and improve recipe indentation
* Make LICENSE more accurate
* Add LIC_FILES_CHKSUM
Some of this work was done by Dexuan Cui <dexuan.cui@intel.com> and
Kevin Strasser <kevin.strasser@linux.intel.com>.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta-networking/recipes-daemons/proftpd/files/basic.conf.patch')
| -rw-r--r-- | meta-networking/recipes-daemons/proftpd/files/basic.conf.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/proftpd/files/basic.conf.patch b/meta-networking/recipes-daemons/proftpd/files/basic.conf.patch new file mode 100644 index 0000000000..4967bed1e7 --- /dev/null +++ b/meta-networking/recipes-daemons/proftpd/files/basic.conf.patch | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | Upstream-Status: Inappropriate [configuration] | ||
| 2 | |||
| 3 | proftpd tries to get the IP address from the hostname. | ||
| 4 | Unluckily now the hostname is not properly configured in /etc/hosts. | ||
| 5 | We can use this patch as a workaround. | ||
| 6 | |||
| 7 | Author: Dexuan Cui <dexuan.cui@intel.com> | ||
| 8 | Tue Oct 25 12:59:27 CST 2011 | ||
| 9 | |||
| 10 | --- proftpd-1.3.3c.orig/sample-configurations/basic.conf | ||
| 11 | +++ proftpd-1.3.3c/sample-configurations/basic.conf | ||
| 12 | @@ -7,6 +7,9 @@ | ||
| 13 | ServerType standalone | ||
| 14 | DefaultServer on | ||
| 15 | |||
| 16 | +#By default we bind to all interfaces. | ||
| 17 | +DefaultAddress 0.0.0.0 | ||
| 18 | + | ||
| 19 | # Port 21 is the standard FTP port. | ||
| 20 | Port 21 | ||
| 21 | |||
