Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/targets/
Date: Sat, 02 Apr 2022 23:50:52
Message-Id: 1648943424.c2c22f5d07684ed0c6b802254e7b678358111579.mattst88@gentoo
1 commit: c2c22f5d07684ed0c6b802254e7b678358111579
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 8 21:08:09 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 23:50:24 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=c2c22f5d
7
8 catalyst: add new options to stage4 step list
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 catalyst/targets/stage4.py | 6 ++++++
14 1 file changed, 6 insertions(+)
15
16 diff --git a/catalyst/targets/stage4.py b/catalyst/targets/stage4.py
17 index ff1d4dca..35309b45 100644
18 --- a/catalyst/targets/stage4.py
19 +++ b/catalyst/targets/stage4.py
20 @@ -19,13 +19,16 @@ class stage4(StageBase):
21 "stage4/empty",
22 "stage4/fsscript",
23 "stage4/gk_mainargs",
24 + "stage4/groups",
25 "stage4/linuxrc",
26 "stage4/rcadd",
27 "stage4/rcdel",
28 "stage4/rm",
29 "stage4/root_overlay",
30 + "stage4/ssh_public_keys",
31 "stage4/unmerge",
32 "stage4/use",
33 + "stage4/users",
34 ])
35
36 def __init__(self, spec, addlargs):
37 @@ -51,6 +54,9 @@ class stage4(StageBase):
38 ])
39 self.finish_sequence.extend([
40 self.remove,
41 + self.groups,
42 + self.users,
43 + self.ssh_public_keys,
44 self.empty,
45 self.clean,
46 ])