diff options
author | Lance Albertson <lance@osuosl.org> | 2021-03-15 12:06:10 -0700 |
---|---|---|
committer | Lance Albertson <lance@osuosl.org> | 2021-03-15 14:40:11 -0700 |
commit | 9b17a9dbbd6e25d8f3ac0ac2f75f0148f1cfb056 (patch) | |
tree | 74671df95f2077ec45202bebb302ff6277908af3 /kitchen-tests | |
parent | 6b1ab6a151e1ad01a9d004a21bde31530bdbee6e (diff) | |
download | chef-9b17a9dbbd6e25d8f3ac0ac2f75f0148f1cfb056.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" } |