Created
July 20, 2010 23:59
-
-
Save griggheo/483813 to your computer and use it in GitHub Desktop.
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 -ex | |
# Add chef master hostname | |
cat <<EOL > /etc/hosts | |
127.0.0.1 localhost.localdomain localhost | |
10.2.170.5 chefmaster | |
10.22.162.3 mysite.com | |
# The following lines are desirable for IPv6 capable hosts | |
::1 ip6-localhost ip6-loopback | |
fe00::0 ip6-localnet | |
ff00::0 ip6-mcastprefix | |
ff02::1 ip6-allnodes | |
ff02::2 ip6-allrouters | |
ff02::3 ip6-allhosts | |
EOL | |
wget -qO/usr/bin/runurl mysite.com/runurl | |
chmod 755 /usr/bin/runurl | |
runurl mysite.com/customize/hostname HOSTNAME | |
runurl mysite.com/customize/hosts add self | |
runurl mysite.com/install/chef-client CHEF_ROLE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment