Skip to content
Merged

14.3 #41

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To create a box:
more information.

```console
$ vagrant box add builds/FreeBSD-14.2-RELEASE-amd64.box --name FreeBSD-14.2-RELEASE-amd64
$ vagrant box add builds/FreeBSD-14.3-RELEASE-amd64.box --name FreeBSD-14.3-RELEASE-amd64
```

Sample `Vagrantbox` file
Expand All @@ -70,7 +70,7 @@ ansible_raw_arguments = []
Vagrant.configure(2) do |config|
servers.each do |server|
config.vm.define server[:name] do |box|
box.vm.box = 'FreeBSD-14.2-RELEASE-amd64'
box.vm.box = 'FreeBSD-14.3-RELEASE-amd64'
box.vm.hostname = server[:name]
box.vm.provider 'virtualbox' do |v|
v.default_nic_type = 'virtio'
Expand Down Expand Up @@ -124,7 +124,7 @@ guest_os_type = "FreeBSD_64"
memory = 1024
mirror = "https://download.freebsd.org"
rc_conf_file = ""
revision = "14.2"
revision = "14.3"
```

The following variables can be set:
Expand All @@ -136,7 +136,7 @@ The following variables can be set:
- `memory` is the amount of RAM in megabytes assigned. _Default:_
`1024`

- `revision` is the FreeBSD revision number. _Default:_ `14.2`
- `revision` is the FreeBSD revision number. _Default:_ `14.3`

- `branch` used in conjunction with `build_date`, `git_commit` and
`directory`. _Default:_ `RELEASE`
Expand Down
2 changes: 1 addition & 1 deletion variables.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ variable "rc_conf_file" {

variable "revision" {
type = string
default = "14.2"
default = "14.3"
}
2 changes: 1 addition & 1 deletion variables.pkrvars.hcl.sample
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ guest_os_type = "FreeBSD_64"
memory = 1024
mirror = "https://download.freebsd.org"
rc_conf_file = ""
revision = "14.2"
revision = "14.3"