[elbe-devel] [PATCH 2/4] finetuning: Fix <adduser system=true> action
Torben Hohn
torben.hohn at linutronix.de
Thu Jan 20 16:56:12 CET 2022
Missing space.
Signed-off-by: Torben Hohn <torben.hohn at linutronix.de>
---
elbepack/finetuning.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/elbepack/finetuning.py b/elbepack/finetuning.py
index f70115314..3f15a1d20 100644
--- a/elbepack/finetuning.py
+++ b/elbepack/finetuning.py
@@ -261,7 +261,7 @@ class AddUserAction(FinetuningAction):
if 'home' in att:
options += '-d "%s" ' % att['home']
if 'system' in att and att['system'] == 'true':
- options += '-r'
+ options += '-r '
if 'create_home' in att and att['create_home'] == 'false':
options += '-M '
else:
--
2.20.1
More information about the elbe-devel
mailing list