diff options
author | Lance Albertson <lance@osuosl.org> | 2021-03-15 12:06:10 -0700 |
---|---|---|
committer | Lance Albertson <lance@osuosl.org> | 2021-03-15 12:07:35 -0700 |
commit | db2a034dd191dfb57f45209f45890f1b52160db0 (patch) | |
tree | 2d46f8139be524b1c4a3e16b9e145bf300cfd835 /kitchen-tests | |
parent | 543289ecd5fff46cfe33646ff1d27e20e24e4d67 (diff) | |
download | chef-db2a034dd191dfb57f45209f45890f1b52160db0.tar.gz |
Set password to something longer than 4 chars for MacOS
This is currently using `my_awesome_password` which is the same example used in
the users resource. This was made by running `mkpasswd -m sha-512` on a linux
system.
Signed-off-by: Lance Albertson <lance@osuosl.org>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/data_bags/users/adam.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/data_bags/users/adam.json b/kitchen-tests/data_bags/users/adam.json index f96d7c213f..ecd4b73e74 100644 --- a/kitchen-tests/data_bags/users/adam.json +++ b/kitchen-tests/data_bags/users/adam.json @@ -5,5 +5,5 @@ "shell": "/bin/zsh", "groups": [ "sysadmin" ], "comment": "Adam Jacob", - "password": "*" + "password": "$6$QQk10qmDjMv.o$wHIjLH9JOxUmaJTsxYFttFhP1jZZtTk/ovhpasmQJS5mfimeFs8HMRWGWM8uBB5dhEmP6svqhRdJE5k1oWRPF1" } |