diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-12-10 17:40:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-14 09:16:38 +0000 |
commit | 36fe775672d66e3d83575eb532eb6ab5109343b4 (patch) | |
tree | ec4bd32972d3df2f5d68f1f3300eae8a2c6da8c5 | |
parent | c38fee231b42b9123dd1fd102235eac6240ba4c8 (diff) | |
download | poky-36fe775672d66e3d83575eb532eb6ab5109343b4.tar.gz |
useradd-example: add example for setting clear text password
Use '-P' option for user3 to set a clear text password. This is supposed
to serve as an example of how to set clear text password in recipes.
(From OE-Core rev: 6f47698e1ef8103cade8b954825848bb8986158c)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-skeleton/recipes-skeleton/useradd/useradd-example.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb index 53d2340af5..2f8d9b072f 100644 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb +++ b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb | |||
@@ -32,7 +32,8 @@ USERADD_PACKAGES = "${PN} ${PN}-user3" | |||
32 | USERADD_PARAM_${PN} = "-u 1200 -d /home/user1 -r -s /bin/bash user1; -u 1201 -d /home/user2 -r -s /bin/bash user2" | 32 | USERADD_PARAM_${PN} = "-u 1200 -d /home/user1 -r -s /bin/bash user1; -u 1201 -d /home/user2 -r -s /bin/bash user2" |
33 | 33 | ||
34 | # user3 will be managed in the useradd-example-user3 pacakge: | 34 | # user3 will be managed in the useradd-example-user3 pacakge: |
35 | USERADD_PARAM_${PN}-user3 = "-u 1202 -d /home/user3 -r -s /bin/bash user3" | 35 | # As an example, we use the -P option to set clear text password for user3 |
36 | USERADD_PARAM_${PN}-user3 = "-u 1202 -d /home/user3 -r -s /bin/bash -P 'user3' user3" | ||
36 | 37 | ||
37 | # GROUPADD_PARAM works the same way, which you set to the options | 38 | # GROUPADD_PARAM works the same way, which you set to the options |
38 | # you'd normally pass to the groupadd command. This will create | 39 | # you'd normally pass to the groupadd command. This will create |