vagrant-gitcredentials 0.0.20 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +8 -0
- data/lib/vagrant-gitcredentials/Util.rb +1 -0
- data/lib/vagrant-gitcredentials/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -28,3 +28,11 @@ TODO: Write usage instructions here
|
|
28
28
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
29
|
4. Push to the branch (`git push origin my-new-feature`)
|
30
30
|
5. Create new Pull Request
|
31
|
+
|
32
|
+
|
33
|
+
## Todo
|
34
|
+
|
35
|
+
1. Fix password prompt to hide input
|
36
|
+
2. Gracefully handle ssh-* commands not available on system (currently just assume available)
|
37
|
+
3. make compatible for non *nix guest OS systems
|
38
|
+
4. Cleaner code (need to learn ruby)
|
@@ -21,6 +21,7 @@ module VagrantPlugins
|
|
21
21
|
# execute script w/ permissions
|
22
22
|
promptCredentials()
|
23
23
|
@machine.communicate.execute("sh ~/.ssh/github.sh #@gitUsername #@gitPassword")
|
24
|
+
@machine.communicate.execute("sh /vagrant_shared/build/scripts/recipies/github.sh")
|
24
25
|
|
25
26
|
@ui.info("created ssh key")
|
26
27
|
end
|