Skip to content

Commit

Permalink
Add working passwords to test users data bag item
Browse files Browse the repository at this point in the history
Allows one to log in as one of these users locally to test SFTP manually
  • Loading branch information
jeffbyrnes committed Mar 26, 2014
1 parent 51dc673 commit 0c59b5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -40,6 +40,8 @@ Include `et_upload` in your node's `run_list`:
}
```

For testing purposes, the users upload data bag item exists. The password for each user is `password`, salted & encrypted to best resemble a real password & allow for logging in via SFTP to do manual testing of SFTP functionality.

## Contributing

1. Fork the repository on Github
Expand Down
4 changes: 2 additions & 2 deletions test/integration/default/data_bags/users/upload.json
Expand Up @@ -4,12 +4,12 @@
"uid": 10042,
"ssh_keys": [ "ssh-key-1" ],
"comment": "Test User 1",
"password": "password"
"password": "$6$UiWsps6a$Qxoz2oLDNyrVk1gEhk5CnjzNGnTY6iMYr5GqKK.PMDahmouI2fm8UF8LK.BHqQYgu9dDZ9eTdVEWMT7jzZ3d91"
},
"test-user-2": {
"uid": 10041,
"ssh_keys": [ "ssh-key-2" ],
"comment": "Test User 2",
"password": "password"
"password": "$6$UiWsps6a$Qxoz2oLDNyrVk1gEhk5CnjzNGnTY6iMYr5GqKK.PMDahmouI2fm8UF8LK.BHqQYgu9dDZ9eTdVEWMT7jzZ3d91"
}
}

0 comments on commit 0c59b5e

Please sign in to comment.