[oe-commits] [openembedded-core] 08/14: quilt: run-ptest remove Interactive Input

git at git.openembedded.org git at git.openembedded.org
Mon Jun 24 16:35:27 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit fe026f3819dcdb5f7c6e349e806fc7fc715ab6d0
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Mon Jun 24 14:41:09 2019 +0800

    quilt: run-ptest remove Interactive Input
    
    adduser in busybox and adduser under meta-openembeded have different
    behavior, adduser under meta-openembeded need Interactive Input like
    below if you manually run ptest.
    
    Enter the new value, or press ENTER for the default
    	Full Name []:
    	Room Number []:
            ...
    
    remove the "Interactive Input" by add --gecos "" to align the behavior
    also it is better for automation without interactive input
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/quilt/quilt/run-ptest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/quilt/quilt/run-ptest b/meta/recipes-devtools/quilt/quilt/run-ptest
index 4b808ae..d2de5c8 100755
--- a/meta/recipes-devtools/quilt/quilt/run-ptest
+++ b/meta/recipes-devtools/quilt/quilt/run-ptest
@@ -2,7 +2,7 @@
 
 THIS_SH=/bin/sh
 ln -sf /bin/ed /usr/bin/ed
-/usr/sbin/adduser --disabled-password quilttest
+/usr/sbin/adduser --disabled-password --gecos "" quilttest
 su -c "${THIS_SH} ./test.sh" quilttest
 /usr/sbin/deluser quilttest
 rm -f /usr/bin/ed

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list