mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
useradd_base.bbclass: typo fixes (s/scucess/success/)
(From OE-Core master rev: eace0a2c13721d1b8952a01abac30eb2661fcd85) (From OE-Core rev: b073f927ec332c5a3608277751ef27d9280c51d8) Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
310e37485b
commit
66fc24c6cb
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user