This file contains hidden or 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
| echo "Removing requiretty" | |
| sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers | |
| echo "Complete!" |
This file contains hidden or 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
| # Add this to the plugin.rb file in your Vagrant plugin | |
| action_hook(:foo_action, Plugin::ALL_ACTIONS) do |hook| | |
| require_relative 'action/foo_action' | |
| hook.after(Vagrant::Action::Builtin::SyncedFolders, Action::FooAction) | |
| end |
This file contains hidden or 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
| There was an error when attempting to rsync a synced folder. | |
| Please inspect the error message below for more info. | |
| Host path: /Users/peterso/Projects/foo-project/ | |
| Guest path: /vagrant | |
| There was an error when attempting to rsync a synced folder. | |
| Please inspect the error message below for more info. | |
| Host path: /Users/peterso/Projects/foo-project/ | |
| Guest path: /vagrant |
This file contains hidden or 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
| config.vm.define "oracledb" do |oracledb| | |
| puts ENV['VAGRANT_DEFAULT_PROVIDER'] | |
| oracledb.vm.box = "oracledb_201406241602" | |
| oracledb.vm.box_url = "https://fakewebsite.com/capdoracledb_201406241602.box" | |
| oracledb.vm.provider :virtualbox do |vb| | |
| vb.customize ["modifyvm", :id, "--memory", 1024, "--ioapic", "on"] | |
| end | |
| oracledb.vm.host_name = 'oracledb.test' | |
| oracledb.vm.provision :shell, :path => "vagrant.sh" | |
| oracledb.vm.network "private_network", ip: "172.16.10.12" |
This file contains hidden or 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
| Failures: | |
| 1) ClassMixedWithDSLHelpers#apply_manifest_on can set the --noops flag | |
| Failure/Error: subject.apply_manifest_on( | |
| #<ClassMixedWithDSLHelpers:0x007fd370940390> received :on with unexpected arguments | |
| expected: (no args) | |
| got: (#<Unix::Host:0x007fd370976dc8 @logger=#<RSpec::Mocks::Mock:0x3fe9b84a8774 @name="logger">, @options={:project=>"Beaker", :department=>"peterso", :validate=>true, :jenkins_build_url=>nil, :forge_host=>"vulcan-acceptance.delivery.puppetlabs.net", :log_level=>"verbose", :trace_limit=>10, :hosts_file=>"sample.cfg", :options_file=>nil, :type=>:foss, :provision=>true, :preserve_hosts=>"never", :root_keys=>false, :quiet=>false, :xml=>false, :color=>true, :dry_run=>false, :timeout=>300, :fail_mode=>"slow", :timesync=>false, :repo_proxy=>false, :package_proxy=>false, :add_el_extras=>false, :add_master_entry=>false, :consoleport=>443, :pe_dir=>"/opt/enterprise/dists", :pe_version_file=>"LATEST", :pe_version_file_win=>"LATEST-win", :dot_fog=>"/Users/pete |
This file contains hidden or 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
| /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec/beaker_shim.rb:35:in `validate': uninitialized constant Beaker::Utils (NameError) | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec/spec_helper.rb:22:in `block in <top (required)>' | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/rspec-core-3.0.0/lib/rspec/core.rb:79:in `configure' | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec/spec_helper.rb:5:in `<top (required)>' | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec.rb:5:in `require' | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec.rb:5:in `<module:BeakerRSpec>' | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-rspec-2.0.0/lib/beaker-rspec.rb:1:in `<top (required)>' | |
| from /Users/peterso/Projects/puppetlab |
This file contains hidden or 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
| /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/bundler-1.5.3/lib/bundler/rubygems_integration.rb:240:in `block in replace_gem': vagrant-wrapper is not part of the bundle. Add it to Gemfile. (Gem::LoadError) | |
| from /opt/boxen/rbenv/versions/2.0.0-p451/bin/vagrant:22:in `<main>' | |
| /opt/boxen/rbenv/versions/2.0.0-p451/lib/ruby/gems/2.0.0/gems/beaker-1.12.1/lib/beaker/hypervisor/vagrant.rb:151:in `block in vagrant_cmd': Failed to exec 'vagrant destroy --force' (RuntimeError) |
This file contains hidden or 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
| it "should return install_options as nil by default" do | |
| provider.expects(:execute).with(anything, anything, anything, anything, anything, nil).returns "" | |
| provider.install | |
| end | |
| it "should accept install_options" do | |
| resource[:install_options] = "--force" | |
| provider.expects(:execute).with(anything, anything, anything, anything, anything, '--force').returns "" | |
| provider.install | |
| end |
This file contains hidden or 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
| # CentOS-Base.repo | |
| # | |
| # The mirror system uses the connecting IP address of the client and the | |
| # update status of each mirror to pick mirrors that are updated to and | |
| # geographically close to the client. You should use this for CentOS updates | |
| # unless you are manually picking other mirrors. | |
| # | |
| ## If the mirrorlist= does not work for you, as a fall back you can try the | |
| remarked out baseurl= line instead. | |
| # |
This file contains hidden or 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
| undefined method `gsub' for nil:NilClass | |
| /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.3/lib/vagrant/util/shell_quote.rb:9:in `escape' | |
| /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.3/lib/vagrant/action/builtin/ssh_run.rb:37:in `call' | |
| /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.3/lib/vagrant/action/warden.rb:34:in `call' | |
| /Users/inakiabt/.vagrant.d/gems/gems/vagrant-puppet-install-2.0.0/lib/vagrant-puppet-install/action/install_puppet.rb:40:in `call' | |
| /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.3/lib/vagrant/action/warden.rb:34:in `call' | |
| /Users/inakiabt/.vagrant.d/gems/gems/vagrant-puppet-install-2.0.0/lib/vagrant-puppet-install/action/read_puppet_version.rb:40:in `call' |