Last active
August 29, 2015 14:01
-
-
Save amfred/527ad1f36254a5aa7d93 to your computer and use it in GitHub Desktop.
A very simple script that will write a "hello world" file and install Chef workstation. Put it on Dropbox or a web server to get an HTTPS URL, and use that as the SoftLayer provision script URL.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#======================================================================= | |
# testDropbox.sh | |
# © Copyright IBM Corporation 2014. | |
# LICENSE: MIT (http://opensource.org/licenses/MIT) | |
#======================================================================= | |
echo "hello world" > helloWorld.txt | |
curl -L https://www.opscode.com/chef/install.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See my other SoftLayer bootstrap scripts at https://github.com/amfred/softlayerbootstrap. They are listed in the README.md file. MIT license, strictly AS-IS, use at your own risk.