summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Albertson <lance@osuosl.org>2021-03-15 12:06:10 -0700
committerLance Albertson <lance@osuosl.org>2021-03-15 12:07:35 -0700
commitdb2a034dd191dfb57f45209f45890f1b52160db0 (patch)
tree2d46f8139be524b1c4a3e16b9e145bf300cfd835
parent543289ecd5fff46cfe33646ff1d27e20e24e4d67 (diff)
downloadchef-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>
-rw-r--r--kitchen-tests/data_bags/users/adam.json2
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"
}