Skip to content

Instantly share code, notes, and snippets.

@dkavanagh
Created June 11, 2014 18:08
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/c91700e3f82eed0beca0 to your computer and use it in GitHub Desktop.
Save dkavanagh/c91700e3f82eed0beca0 to your computer and use it in GitHub Desktop.
Cloud Init script for the Eucalyptus Management console
#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