From c6a652a5d2aa58af06f5ea1a74b45b06fd90d0df Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 7 Jan 2012 19:28:32 +0100 Subject: [PATCH] busybox: install configfile not called '.conf' too Signed-off-by: Stephan Raue --- packages/sysutils/busybox/init.d/04_userconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/init.d/04_userconfig b/packages/sysutils/busybox/init.d/04_userconfig index a9dc70dd55..c7229fcb7f 100644 --- a/packages/sysutils/busybox/init.d/04_userconfig +++ b/packages/sysutils/busybox/init.d/04_userconfig @@ -33,7 +33,7 @@ if [ -d /usr/config ]; then mkdir -p /storage/.config/$dir done - for config in `find . -type f -name "*.conf"`; do + for config in `find . -type f -not -name "*.sample"`; do if [ ! -f /storage/.config/$config ]; then cp $config /storage/.config/$config fi