Sha256: 726e7a5ea06eea3e5cdbbd7bfcdf4a26d6cf1bd1318dbf2bfb67d577ebc9be75
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
require File.expand_path("../../../../../base", __FILE__) require File.expand_path("../../../support/shared/debian_like_host_name_examples", __FILE__) describe "VagrantPlugins::GuestDebian::Cap::ChangeHostName" do let(:described_class) do VagrantPlugins::GuestDebian::Plugin.components.guest_capabilities[:debian].get(:change_host_name) end let(:machine) { double("machine") } let(:communicator) { VagrantTests::DummyCommunicator::Communicator.new(machine) } let(:old_hostname) { 'oldhostname.olddomain.tld' } before do allow(machine).to receive(:communicate).and_return(communicator) communicator.stub_command('hostname -f', stdout: old_hostname) end after do communicator.verify_expectations! end describe ".change_host_name" do it_behaves_like "a debian-like host name change" it "refreshes the hostname service with the hostname command" do communicator.expect_command(%q(hostname -F /etc/hostname)) described_class.change_host_name(machine, 'newhostname.newdomain.tld') end it "renews dhcp on the system with the new hostname" do communicator.expect_command(%q(ifdown -a; ifup -a; ifup eth0)) described_class.change_host_name(machine, 'newhostname.newdomain.tld') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-cloudstack-1.2.0 | vendor/bundle/bundler/gems/vagrant-c84e05fd063f/test/unit/plugins/guests/debian/cap/change_host_name_test.rb |