Skip to content

Commit

Permalink
chore(deps): bump packer-plugin-git from v0.6.1 to v0.6.2 (#868)
Browse files Browse the repository at this point in the history
Bumps Packer Plugin for Git (`ethanmdavidson/packer-plugin-git`) from v0.6.1 to v0.6.2

Signed-off-by: Ryan Johnson <[email protected]>
  • Loading branch information
tenthirtyam committed Mar 29, 2024
1 parent 12d4f7a commit e97b969
Show file tree
Hide file tree
Showing 27 changed files with 100 additions and 100 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

- Updates `required_versions` for `packer` to `>= 1.10.0`. [GH-828](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/828)
- Updates `required_plugins` for `packer-plugin-vsphere` to `>= 1.2.4`. [GH-824](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/824)
- Updates `required_plugins` for `ethanmdavidson/packer-plugin-git` to `>= 0.6.1`. [GH-827](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/827)
- Updates `required_versions` for `terraform` to `>= 1.7.1`. [GH-8297](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/829)
- Updates `required_plugins` for `ethanmdavidson/packer-plugin-git` to `>= 0.6.2`. [GH-868](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/868)
- Updates `required_versions` for `terraform` to `>= 1.7.1`. [GH-829](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/829)
- Updates `required_versions` for `hashicorp/vsphere` to `>= 2.7.0`. [GH-866](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/866)
- Updates `required_versions` for `hashicorp/hcp` to `>= 0.84.1`. [GH-867](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/867)
- Updates Gomplate to `3.11.7`. [GH-825](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/825)
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/almalinux/8/linux-almalinux.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -134,14 +134,14 @@ source "vsphere-iso" "linux-almalinux" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/almalinux/9/linux-almalinux.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -134,14 +134,14 @@ source "vsphere-iso" "linux-almalinux" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/centos/7/linux-centos.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -134,14 +134,14 @@ source "vsphere-iso" "linux-centos" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/centos/8-stream/linux-centos-stream.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -134,14 +134,14 @@ source "vsphere-iso" "linux-centos-stream" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/centos/9-stream/linux-centos-stream.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -134,14 +134,14 @@ source "vsphere-iso" "linux-centos-stream" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
4 changes: 2 additions & 2 deletions builds/linux/debian/11/linux-debian.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -144,7 +144,7 @@ source "vsphere-iso" "linux-debian" {
" auto-install/enable=true",
// This types a string that sets the debconf/priority option to critical. This is used to minimize the number of questions asked during the installation process.
" debconf/priority=critical",
// This types the value of the 'data_source_command' local variable. This is used to specify the kickstart data source configured in the common variables.
// This types the value of the 'data_source_command' local variable. This is used to specify the kickstart data source configured in the common variables.
" ${local.data_source_command}",
// This types a string that sets the noprompt option and then sends the "enter" key. This is used to prevent the installer from pausing for user input.
" noprompt --<enter>",
Expand Down
4 changes: 2 additions & 2 deletions builds/linux/debian/12/linux-debian.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -144,7 +144,7 @@ source "vsphere-iso" "linux-debian" {
" auto-install/enable=true",
// This types a string that sets the debconf/priority option to critical. This is used to minimize the number of questions asked during the installation process.
" debconf/priority=critical",
// This types the value of the 'data_source_command' local variable. This is used to specify the kickstart data source configured in the common variables.
// This types the value of the 'data_source_command' local variable. This is used to specify the kickstart data source configured in the common variables.
" ${local.data_source_command}",
// This types a string that sets the noprompt option and then sends the "enter" key. This is used to prevent the installer from pausing for user input.
" noprompt --<enter>",
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/oracle/8/linux-oracle.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -135,14 +135,14 @@ source "vsphere-iso" "linux-oracle" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
12 changes: 6 additions & 6 deletions builds/linux/oracle/9/linux-oracle.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down Expand Up @@ -135,14 +135,14 @@ source "vsphere-iso" "linux-oracle" {
boot_command = [
// This sends the "up arrow" key, typically used to navigate through boot menu options.
"<up>",
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
// This sends the "e" key. In the GRUB boot loader, this is used to edit the selected boot menu option.
"e",
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
// This sends two "down arrow" keys, followed by the "end" key, and then waits. This is used to navigate to a specific line in the boot menu option's configuration.
"<down><down><end><wait>",
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
// This types the string "text" followed by the value of the 'data_source_command' local variable.
// This is used to modify the boot menu option's configuration to boot in text mode and specify the kickstart data source configured in the common variables.
"text ${local.data_source_command}",
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
// This sends the "enter" key, waits, turns on the left control key, sends the "x" key, and then turns off the left control key. This is used to save the changes and exit the boot menu option's configuration, and then continue the boot process.
"<enter><wait><leftCtrlOn>x<leftCtrlOff>"
]
ip_wait_timeout = var.common_ip_wait_timeout
Expand Down
2 changes: 1 addition & 1 deletion builds/linux/photon/4/linux-photon.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion builds/linux/photon/5/linux-photon.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packer {
}
git = {
source = "github.com/ethanmdavidson/git"
version = ">= 0.6.1"
version = ">= 0.6.2"
}
}
}
Expand Down
Loading

0 comments on commit e97b969

Please sign in to comment.