Gentoo Archives: gentoo-catalyst

From: Matt Turner <mattst88@g.o>
To: gentoo-catalyst@l.g.o
Cc: Patrice Clement <monsieurp@g.o>
Subject: [gentoo-catalyst] [PATCH 2/3] catalyst: add new options to stage4 step list
Date: Sun, 27 Mar 2022 23:37:24
Message-Id: 20220327233712.1282001-2-mattst88@gentoo.org
In Reply to: [gentoo-catalyst] [PATCH 1/3] catalyst: support 3 new options by Matt Turner
1 From: Patrice Clement <monsieurp@g.o>
2
3 Signed-off-by: Patrice Clement <monsieurp@g.o>
4 ---
5 catalyst/targets/stage4.py | 6 ++++++
6 1 file changed, 6 insertions(+)
7
8 diff --git a/catalyst/targets/stage4.py b/catalyst/targets/stage4.py
9 index ff1d4dca..35309b45 100644
10 --- a/catalyst/targets/stage4.py
11 +++ b/catalyst/targets/stage4.py
12 @@ -19,13 +19,16 @@ class stage4(StageBase):
13 "stage4/empty",
14 "stage4/fsscript",
15 "stage4/gk_mainargs",
16 + "stage4/groups",
17 "stage4/linuxrc",
18 "stage4/rcadd",
19 "stage4/rcdel",
20 "stage4/rm",
21 "stage4/root_overlay",
22 + "stage4/ssh_public_keys",
23 "stage4/unmerge",
24 "stage4/use",
25 + "stage4/users",
26 ])
27
28 def __init__(self, spec, addlargs):
29 @@ -51,6 +54,9 @@ class stage4(StageBase):
30 ])
31 self.finish_sequence.extend([
32 self.remove,
33 + self.groups,
34 + self.users,
35 + self.ssh_public_keys,
36 self.empty,
37 self.clean,
38 ])
39 --
40 2.34.1