Skip to content

Commit

Permalink
FreeBSD 14.2-RELEASE (#40)
Browse files Browse the repository at this point in the history
Update to FreeBSD 14.2-RELEASE
  • Loading branch information
jlduran authored Dec 11, 2024
1 parent 617e2d0 commit 49c7e19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.

```shell
$ vagrant box add builds/FreeBSD-14.0-RELEASE-amd64.box --name FreeBSD-14.0-RELEASE-amd64
$ vagrant box add builds/FreeBSD-14.2-RELEASE-amd64.box --name FreeBSD-14.2-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.0-RELEASE-amd64'
box.vm.box = 'FreeBSD-14.2-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.0"
revision = "14.2"
```
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.0`
- `revision` is the FreeBSD revision number. _Default:_ `14.2`
- `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.1"
default = "14.2"
}
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.1"
revision = "14.2"

0 comments on commit 49c7e19

Please sign in to comment.