Re: [OpenWrt-Devel] [PATCH] packages/opkg: provide conffiles list upon sysupgrade

2010-02-02 Thread Bastian Bittorf
* Alexey I. Froloff [03.02.2010 00:00]: > +#!/bin/sh > + > +add_opkg_conffiles() { > + local file="$1" > + find /usr/lib/opkg/info -name '*.conffiles' | xargs -r cat >> "$file" > + return 0 > +} seems complicated to me, why not: cat /usr/lib/opkg/info/*.conffiles >>"$file" bye, Ba

Re: [OpenWrt-Devel] [patch] dropbear: use -q where applicable

2010-02-02 Thread Bastian Bittorf
* Matthias Buecher / Germany [02.02.2010 18:00]: > > Thanks Bastian, for your input. Much cleaner approach. > > What about the follwing (works fine on my router): > > grep -q -e "${PROG}" "/proc/${pid}/cmdline" && { > append ignore "${pid}" > break > } >

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread Weedy
My SSH public key: ssh-dss B3NzaC1kc3MAAAEBAM9a2e8W3rBrh1g2ijh4K99sptoeFGt3vr0pS2iRSvcsgrTcVrafzDLCqj+VZZsZFhpayou6AAbverg0129M/e8yM+ec5dstb0Znfvj2Uv1JHpTlyKMusIvN3lezJZVF45qY7bFY+JFxRNDVrsWZcYypF6dhWgLmVKXEoRy21yuIYmFprnJVWpQO1zJJJvBU+lmj6Dc9KU5goprZEV+ZmDIHIp9T3NQaoCndxgmKp5ypLWMIjrQpF5HJ

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread david
On Tue, 2 Feb 2010, Travis Kemen wrote: On Tue, Feb 2, 2010 at 9:10 PM, Stefan Monnier wrote: Oh, and did I say I *hate* Reply-To? Stefan "Stefan" == Stefan Monnier writes: I will commit your patches later today. I also need the username you want to use, a ssh public key for svn

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread Travis Kemen
On Tue, Feb 2, 2010 at 9:10 PM, Stefan Monnier wrote: > Oh, and did I say I *hate* Reply-To? > > >Stefan > > > > "Stefan" == Stefan Monnier writes: > >> I will commit your patches later today. I also need the username you > >> want to use, a ssh public key for svn, and the hash creat

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread Stefan Monnier
Oh, and did I say I *hate* Reply-To? Stefan > "Stefan" == Stefan Monnier writes: >> I will commit your patches later today. I also need the username you >> want to use, a ssh public key for svn, and the hash created by >> 'htdigest -c passwdfile openwrt username' for trac and I wi

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread Stefan Monnier
> I will commit your patches later today. I also need the username you > want to use, a ssh public key for svn, and the hash created by > 'htdigest -c passwdfile openwrt username' for trac and I will get you > setup with access to LVM. I also request that you fill in > https://dev.openwrt.org/wik

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread puchu
Hi, i wanna maintain ctorrent, openssh and openssl. maybe not all of them are accepted ...but im happy about every of this packages greets Am Samstag 30 Januar 2010 00:13:22 schrieb Travis Kemen: > We are looking for people that want to maintain and update individual > packages. If you are inter

[OpenWrt-Devel] [PATCH] packages/opkg: provide conffiles list upon sysupgrade

2010-02-02 Thread Alexey I. Froloff
When performing sysupgrade process, opkg should report its conffiles list. Signed-off-by: Alexey I. Froloff --- package/opkg/Makefile|2 ++ package/opkg/files/opkg-conffiles.sh |8 2 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 package/opkg

[OpenWrt-Devel] [patch][orion] move 2.6.30 configuration and patches to their appropriate names

2010-02-02 Thread Matthias Buecher / Germany
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, please execute the following svn commands inside trunk to correct the names of the orion config file and patches folder: svn mv target/linux/orion/config-default target/linux/orion/config-2.6.30 svn mv target/linux/orion/patches/ target/l

Re: [OpenWrt-Devel] Wanted: Package Maintainers

2010-02-02 Thread Travis Kemen
I will commit your patches later today. I also need the username you want to use, a ssh public key for svn, and the hash created by 'htdigest -c passwdfile openwrt username' for trac and I will get you setup with access to LVM. I also request that you fill in https://dev.openwrt.org/wiki/packages f

Re: [OpenWrt-Devel] [patch] dropbear: use -q where applicable

2010-02-02 Thread Matthias Buecher / Germany
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks Bastian, for your input. Much cleaner approach. What about the follwing (works fine on my router): grep -q -e "${PROG}" "/proc/${pid}/cmdline" && { append ignore "${pid}" break } Or is there a s

Re: [OpenWrt-Devel] [patch] dropbear: use -q where applicable

2010-02-02 Thread Bastian Bittorf
* Matthias Buecher / Germany [01.02.2010 18:20]: > > # check if client connection > - ps | grep -e "^[ ]*${pid} " | grep "${PROG}" >/dev/null > + ps | grep -e "^[ ]*${pid} " | grep -q -e "${PROG}" > if [ $? -eq 0 ] >then I prop