Skip to content

Instantly share code, notes, and snippets.

@amfred
Last active August 29, 2015 14:01
Show Gist options
  • Save amfred/527ad1f36254a5aa7d93 to your computer and use it in GitHub Desktop.
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.
#!/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
@amfred
Copy link
Author

amfred commented May 14, 2014

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment