From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 07EE515808B for ; Sun, 27 Mar 2022 23:37:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD27FE0967; Sun, 27 Mar 2022 23:37:21 +0000 (UTC) Received: from mail-pl1-f173.google.com (mail-pl1-f173.google.com [209.85.214.173]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A77B0E0967 for ; Sun, 27 Mar 2022 23:37:21 +0000 (UTC) Received: by mail-pl1-f173.google.com with SMTP id i11so13392631plr.1 for ; Sun, 27 Mar 2022 16:37:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=B32yODqLItwBTovCbT7RUAGkelIoFmL7X/SerBV8cIk=; b=2k5cH0v4dHDnflULaIfdTm5dnqOigjmixSog5eaFALslgO6huu2Nz1d4qfUv6Ra6Tb lC54tprRUk3s+re9D6xN8xUMpUyeiDW4aRwOeJcdEk7Og9DTYh/yCSn2Z4AzFNXNAWZ7 Pz/Hayob/dRRrwUT9g3D0HS4bkE3peg8Uf7FtjL/4J8GSN/sGqmOYTniprYx1mbDWbc3 K9M7FKEE6mk1jafIXrXOkKv4Oxv3BhEJY0yuIaEg+1RgE7TSwA38tUVj8cPV7oj1A0rd +Qj9hXxH5RO1fd+RIJBi38HhS6L3RFPXft2YVJiMEBj6Omf9aWlXzikaeNvA1WIrccty pryQ== X-Gm-Message-State: AOAM530p2lQwa8SQugif+XByvP0kBxXNJrAFZZPJIX9DmpGobjvkNTXr BIbd/TZi5znp2cCgHmo9ZhQhJYP+RRk= X-Google-Smtp-Source: ABdhPJzWdLoqgBb0wHJ6JOHMQc5GR5VBxmwAPrmwFo4Lf3tZ6ZAUXa4G9ebULlvvcEKB9mFAvKN70Q== X-Received: by 2002:a17:902:8f94:b0:151:64c5:7759 with SMTP id z20-20020a1709028f9400b0015164c57759mr23708823plo.4.1648424240277; Sun, 27 Mar 2022 16:37:20 -0700 (PDT) Received: from localhost ([199.247.115.17]) by smtp.gmail.com with ESMTPSA id pj9-20020a17090b4f4900b001c744034e7csm19943434pjb.2.2022.03.27.16.37.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 27 Mar 2022 16:37:19 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Patrice Clement Subject: [gentoo-catalyst] [PATCH 2/3] catalyst: add new options to stage4 step list Date: Sun, 27 Mar 2022 16:37:11 -0700 Message-Id: <20220327233712.1282001-2-mattst88@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220327233712.1282001-1-mattst88@gentoo.org> References: <20220327233712.1282001-1-mattst88@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: cb42845f-0447-4e50-a7b8-ccce2807b619 X-Archives-Hash: 0709bfdb05adcc13b64d55ad1ff0c853 From: Patrice Clement Signed-off-by: Patrice Clement --- catalyst/targets/stage4.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/catalyst/targets/stage4.py b/catalyst/targets/stage4.py index ff1d4dca..35309b45 100644 --- a/catalyst/targets/stage4.py +++ b/catalyst/targets/stage4.py @@ -19,13 +19,16 @@ class stage4(StageBase): "stage4/empty", "stage4/fsscript", "stage4/gk_mainargs", + "stage4/groups", "stage4/linuxrc", "stage4/rcadd", "stage4/rcdel", "stage4/rm", "stage4/root_overlay", + "stage4/ssh_public_keys", "stage4/unmerge", "stage4/use", + "stage4/users", ]) def __init__(self, spec, addlargs): @@ -51,6 +54,9 @@ class stage4(StageBase): ]) self.finish_sequence.extend([ self.remove, + self.groups, + self.users, + self.ssh_public_keys, self.empty, self.clean, ]) -- 2.34.1