diff options
author | Mario Domenech Goulart <mario@ossystems.com.br> | 2015-04-01 10:45:45 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-06 20:36:07 +0100 |
commit | eace0a2c13721d1b8952a01abac30eb2661fcd85 (patch) | |
tree | 0614f25b7fc6fdd2093cc468668b85695b4e22a7 | |
parent | 53afa26655d0b5f75ef2dd6bccef76281a14655c (diff) | |
download | openembedded-core-eace0a2c13721d1b8952a01abac30eb2661fcd85.tar.gz openembedded-core-eace0a2c13721d1b8952a01abac30eb2661fcd85.tar.bz2 openembedded-core-eace0a2c13721d1b8952a01abac30eb2661fcd85.zip |
useradd_base.bbclass: typo fixes (s/scucess/success/)
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/useradd_base.bbclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/useradd_base.bbclass b/meta/classes/useradd_base.bbclass index c47b1eb810..4398a25154 100644 --- a/meta/classes/useradd_base.bbclass +++ b/meta/classes/useradd_base.bbclass @@ -29,7 +29,7 @@ perform_groupadd () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running groupadd command $retries times without scucess, giving up" + bbfatal "Tried running groupadd command $retries times without success, giving up" fi sleep $count done @@ -57,7 +57,7 @@ perform_useradd () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running useradd command $retries times without scucess, giving up" + bbfatal "Tried running useradd command $retries times without success, giving up" fi sleep $count done @@ -99,7 +99,7 @@ perform_groupmems () { rm -f $rootdir${sysconfdir}/gshadow rm -f $rootdir${sysconfdir}/gshadow- fi - bbfatal "Tried running groupmems command $retries times without scucess, giving up" + bbfatal "Tried running groupmems command $retries times without success, giving up" fi sleep $count done @@ -131,7 +131,7 @@ perform_groupdel () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running groupdel command $retries times without scucess, giving up" + bbfatal "Tried running groupdel command $retries times without success, giving up" fi sleep $count done @@ -159,7 +159,7 @@ perform_userdel () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running userdel command $retries times without scucess, giving up" + bbfatal "Tried running userdel command $retries times without success, giving up" fi sleep $count done @@ -189,7 +189,7 @@ perform_groupmod () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running groupmod command $retries times without scucess, giving up" + bbfatal "Tried running groupmod command $retries times without success, giving up" fi sleep $count done @@ -219,7 +219,7 @@ perform_usermod () { fi count=`expr $count + 1` if test $count = $retries; then - bbfatal "Tried running usermod command $retries times without scucess, giving up" + bbfatal "Tried running usermod command $retries times without success, giving up" fi sleep $count done |