Skip to content

Instantly share code, notes, and snippets.

@dkavanagh
Created April 30, 2014 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dkavanagh/ac1b9a5a722cfd6e69fc to your computer and use it in GitHub Desktop.
Save dkavanagh/ac1b9a5a722cfd6e69fc to your computer and use it in GitHub Desktop.
This script installs the eucalyptus management console on a centos instance. Edit the IP on line 10 to refer to the proper eucalyptus back end.
#cloud-config
# vim: syntax=yaml
#
# This config installs the eucalyptus and epel repos, then installs and
# configures the eucaconsole package
runcmd:
- [ yum, -y, install, "http://downloads.eucalyptus.com/software/eucalyptus/nightly/4.0/centos/6/x86_64/eucalyptus-release-4.0-0.1.el6.noarch.rpm" ]
- [ yum, -y, install, eucaconsole ]
- [ sed, -i, "s/localhost/10.111.5.78/", /etc/eucaconsole/console.ini ]
- [ service, eucaconsole, restart ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment