Skip to content

Commit

Permalink
Revert host only test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Jan 10, 2023
1 parent 6aad5f4 commit 7085805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/homestead
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if(is_file( __DIR__.'/../vendor/autoload.php')) {
require __DIR__.'/../../../autoload.php';
}

$app = new Symfony\Component\Console\Application('Laravel Homestead', '14.0.0');
$app = new Symfony\Component\Console\Application('Laravel Homestead', '14.0.1');

$app->add(new Laravel\Homestead\MakeCommand);
$app->add(new Laravel\Homestead\WslApplyFeatures);
Expand Down
4 changes: 2 additions & 2 deletions scripts/homestead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def self.configure(config, settings)

# Configure A Private Network IP
if settings['ip'] != 'autonetwork'
config.vm.network :private_network, ip: settings['ip'] ||= '192.168.56.56', name: "HostOnly", virtualbox__intnet: true
config.vm.network :private_network, ip: settings['ip'] ||= '192.168.56.56'
else
config.vm.network :private_network, ip: '0.0.0.0', auto_network: true
end
Expand All @@ -45,7 +45,7 @@ def self.configure(config, settings)
vb.customize ['modifyvm', :id, '--natdnsproxy1', 'on']
vb.customize ['modifyvm', :id, '--natdnshostresolver1', settings['natdnshostresolver'] ||= 'on']
vb.customize ['modifyvm', :id, '--ostype', 'Ubuntu_64']
vb.customize ["modifyvm", :id, "--nic9", "hostonlynet", "--host-only-net9=HostOnly"]

if settings.has_key?('gui') && settings['gui']
vb.gui = true
end
Expand Down

0 comments on commit 7085805

Please sign in to comment.