diff options
| -rw-r--r-- | meta/classes/useradd.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 4577e56f5a..c960656f02 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass | |||
| @@ -50,7 +50,7 @@ fi | |||
| 50 | 50 | ||
| 51 | # Perform group additions first, since user additions may depend | 51 | # Perform group additions first, since user additions may depend |
| 52 | # on these groups existing | 52 | # on these groups existing |
| 53 | if test "x$GROUPADD_PARAM" != "x"; then | 53 | if test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then |
| 54 | echo "Running groupadd commands..." | 54 | echo "Running groupadd commands..." |
| 55 | # Invoke multiple instances of groupadd for parameter lists | 55 | # Invoke multiple instances of groupadd for parameter lists |
| 56 | # separated by ';' | 56 | # separated by ';' |
| @@ -66,7 +66,7 @@ if test "x$GROUPADD_PARAM" != "x"; then | |||
| 66 | done | 66 | done |
| 67 | fi | 67 | fi |
| 68 | 68 | ||
| 69 | if test "x$USERADD_PARAM" != "x"; then | 69 | if test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then |
| 70 | echo "Running useradd commands..." | 70 | echo "Running useradd commands..." |
| 71 | # Invoke multiple instances of useradd for parameter lists | 71 | # Invoke multiple instances of useradd for parameter lists |
| 72 | # separated by ';' | 72 | # separated by ';' |
| @@ -82,7 +82,7 @@ if test "x$USERADD_PARAM" != "x"; then | |||
| 82 | done | 82 | done |
| 83 | fi | 83 | fi |
| 84 | 84 | ||
| 85 | if test "x$GROUPMEMS_PARAM" != "x"; then | 85 | if test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then |
| 86 | echo "Running groupmems commands..." | 86 | echo "Running groupmems commands..." |
| 87 | # Invoke multiple instances of groupmems for parameter lists | 87 | # Invoke multiple instances of groupmems for parameter lists |
| 88 | # separated by ';' | 88 | # separated by ';' |
