Use example domain for documentation

This commit is contained in:
Brian Cain 2020-05-21 08:27:39 -07:00
parent f22feac515
commit 2a239c6c9d
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
5 changed files with 5 additions and 5 deletions

View File

@ -103,7 +103,7 @@ It is a JSON document, structured in the following way:
"providers": [
{
"name": "virtualbox",
"url": "http://somewhere.com/bionic64_010_virtualbox.box",
"url": "http://example.com/bionic64_010_virtualbox.box",
"checksum_type": "sha1",
"checksum": "foo"
}

View File

@ -61,7 +61,7 @@ $ vagrant init -f hashicorp/bionic64
Create a Vagrantfile with the specific box, from the specific box URL:
```sh
$ vagrant init my-company-box https://boxes.company.com/my-company.box
$ vagrant init my-company-box https://example.com/my-company.box
```
Create a Vagrantfile, locking the box to a version constraint:

View File

@ -36,7 +36,7 @@ that the node can register with the Chef Server:
```ruby
Vagrant.configure("2") do |config|
config.vm.provision "chef_client" do |chef|
chef.chef_server_url = "http://mychefserver.com"
chef.chef_server_url = "http://example.com"
chef.validation_key_path = "validation.pem"
end
end

View File

@ -51,7 +51,7 @@ The Vagrant Push FTP and SFTP strategy is defined in the `Vagrantfile` using the
```ruby
config.push.define "ftp" do |push|
push.host = "ftp.company.com"
push.host = "ftp.example.com"
push.username = "username"
push.password = "password"
end

View File

@ -20,7 +20,7 @@ Push configuration section in a `Vagrantfile`:
```ruby
config.push.define "ftp" do |push|
push.host = "ftp.company.com"
push.host = "ftp.example.com"
push.username = "..."
# ...
end