From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id 54BE93858D33 for ; Tue, 27 Dec 2022 10:03:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 54BE93858D33 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 7EEE5219B1; Tue, 27 Dec 2022 10:03:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1672135429; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=htgLr1f0OKjJxx4z1MpLedAcmst07a3WBocug49tKa4=; b=AQLt1k4zqiWnjgRvPWXKkC6iwtWEQY6HlrZP9EZyTBk8UJEC7EtLhOrVlNJ1z/0V1TJVQV zCfXdoeQDyJdzUeUEHlcUAAM4E7bQn3RPoZbsKrxwHqTaNgC4PMq8QWqcq07bdqHENRzRm kl92BNli8+JB+aLh2wW/LPmg1FWAFZk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1672135429; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=htgLr1f0OKjJxx4z1MpLedAcmst07a3WBocug49tKa4=; b=fSfhB8lJrHrNQ5FjaXbFw2qIX7IhdZE6r4ZKyULl7qAyYS35dJyAzsvYXW0YDzJ7yR8mcK 1UR/H1PsCuwTSCBQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 641FD133F5; Tue, 27 Dec 2022 10:03:49 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 7924FgXDqmPxFQAAMHmgww (envelope-from ); Tue, 27 Dec 2022 10:03:49 +0000 Message-ID: Date: Tue, 27 Dec 2022 11:03:48 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: Missing useradd on opensuse tumbleweed To: Mark Wielaard Cc: buildbot@sourceware.org References: Content-Language: en-US From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 12/25/22 21:28, Mark Wielaard wrote: > Hi, > > On Sun, Dec 25, 2022 at 06:12:53PM +0100, Mark Wielaard wrote: >> The opensuse tumbleweed container image doesn't instantiate anymore >> because useradd is missing: >> >> Step 6/12 : RUN useradd -u 1001 -U -d /home/builder -m builder >> ---> Running in 30bd241f0846 >> /bin/sh: line 1: useradd: command not found >> ERROR: The command '/bin/sh -c useradd -u 1001 -U -d /home/builder -m builder' returned a non-zero code: 127 >> >> Do you happen to know which package needs to be added to the image? > > Found it. "shadow". With that installed useradd seems to succeed. Yes, that's the right package. Thanks for it. Martin > > Cheers, > > Mark