Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

provide parameter for privately hosted chef package #16

Closed
someara opened this issue May 24, 2013 · 6 comments
Closed

provide parameter for privately hosted chef package #16

someara opened this issue May 24, 2013 · 6 comments

Comments

@someara
Copy link

someara commented May 24, 2013

because ENTERPRISE (pew pew pew)

@schisamo
Copy link
Contributor

Have some more details on how you would like this to work? What should the config look like? How do we select the correct package in a multi-vm Vagrantfile?

@James-Snow
Copy link

I have a need for this as well.

Presumably one has a specific Chef package in mind for each Vagrant box, so perhaps being able to point at an installer per box? Something like:

Vagrant::Config.run do |config|
  config.vm.define :web do |web_config|
    web_config.vm.box = "web"
    web_config.vm.forward_port 80, 8080
    web_config.vm.chef_version = "/path/to/chef_11.6.0-1.ubuntu.12.04_i386.deb"
  end

  config.vm.define :db do |db_config|
    db_config.vm.box = "db"
    db_config.vm.forward_port 3306, 3306
    db_config.vm.chef_version = "/path/to/chef_11.6.0-1.ubuntu.12.04_amd64.deb"
  end
end

@schisamo
Copy link
Contributor

@someara @James-Snow Could you workaround this by using an alternate install.sh via the OMNIBUS_INSTALL_URL environment variable?

This was added as part of @petecheslock's work in #10

@someara
Copy link
Author

someara commented Oct 17, 2013

That solves it, but it'd be nice as a config parameter instead of an environment.
At minimum is should appear in the readme

@James-Snow
Copy link

My goal was offline development - i.e, no Internet connectivity. The environment variable method works in that it lets me point at a self-extracting shell script.

@schisamo
Copy link
Contributor

Trying to consolidate things here, closing this as it's the same as #46.

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

No branches or pull requests

3 participants