mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
useradd-staticids: print exception after parse_args() error
Without this, the user has no idea what went wrong. (From OE-Core rev: c1d887d63f098a10c7d6286399801d89fd3ebdb0) Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
eb8c7b5e1f
commit
2e7cc1525d
@@ -76,8 +76,8 @@ def update_useradd_static_config(d):
|
||||
for param in oe.useradd.split_commands(params):
|
||||
try:
|
||||
uaargs = parser.parse_args(oe.useradd.split_args(param))
|
||||
except:
|
||||
bb.fatal("%s: Unable to parse arguments for USERADD_PARAM_%s: '%s'" % (d.getVar('PN'), pkg, param))
|
||||
except Exception as e:
|
||||
bb.fatal("%s: Unable to parse arguments for USERADD_PARAM_%s '%s': %s" % (d.getVar('PN'), pkg, param, e))
|
||||
|
||||
# Read all passwd files specified in USERADD_UID_TABLES or files/passwd
|
||||
# Use the standard passwd layout:
|
||||
@@ -197,8 +197,8 @@ def update_useradd_static_config(d):
|
||||
try:
|
||||
# If we're processing multiple lines, we could have left over values here...
|
||||
gaargs = parser.parse_args(oe.useradd.split_args(param))
|
||||
except:
|
||||
bb.fatal("%s: Unable to parse arguments for GROUPADD_PARAM_%s: '%s'" % (d.getVar('PN'), pkg, param))
|
||||
except Exception as e:
|
||||
bb.fatal("%s: Unable to parse arguments for GROUPADD_PARAM_%s '%s': %s" % (d.getVar('PN'), pkg, param, e))
|
||||
|
||||
# Read all group files specified in USERADD_GID_TABLES or files/group
|
||||
# Use the standard group layout:
|
||||
|
||||
Reference in New Issue
Block a user