aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2022-03-08 22:08:09 +0100
committerMatt Turner <mattst88@gentoo.org>2022-04-02 16:50:24 -0700
commitc2c22f5d07684ed0c6b802254e7b678358111579 (patch)
treebcf0e08b2262bbb6ee559d415fcb2b598187c569 /catalyst
parentcatalyst: support 3 new options (diff)
downloadcatalyst-c2c22f5d07684ed0c6b802254e7b678358111579.tar.gz
catalyst-c2c22f5d07684ed0c6b802254e7b678358111579.tar.bz2
catalyst-c2c22f5d07684ed0c6b802254e7b678358111579.zip
catalyst: add new options to stage4 step list
Signed-off-by: Patrice Clement <monsieurp@gentoo.org> Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'catalyst')
-rw-r--r--catalyst/targets/stage4.py6
1 files changed, 6 insertions, 0 deletions
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,
])