├── .github └── workflows │ ├── vyos-v1.2.x-crux.yml │ ├── vyos-v1.3.x-equuleus.yml │ └── vyos-v1.4-rolling-release.yml ├── LICENSE ├── README.md ├── patchs ├── packer.json_ssh-host-port_and_wait-time_crux.patch └── packer.json_wait-time_equuleus.patch └── tools ├── VMware-ovftool-4.4.1-16812187-lin.x86_64.bundle └── private_key_for_signing_vmware_image.pem /.github/workflows/vyos-v1.2.x-crux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/.github/workflows/vyos-v1.2.x-crux.yml -------------------------------------------------------------------------------- /.github/workflows/vyos-v1.3.x-equuleus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/.github/workflows/vyos-v1.3.x-equuleus.yml -------------------------------------------------------------------------------- /.github/workflows/vyos-v1.4-rolling-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/.github/workflows/vyos-v1.4-rolling-release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/README.md -------------------------------------------------------------------------------- /patchs/packer.json_ssh-host-port_and_wait-time_crux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/patchs/packer.json_ssh-host-port_and_wait-time_crux.patch -------------------------------------------------------------------------------- /patchs/packer.json_wait-time_equuleus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/patchs/packer.json_wait-time_equuleus.patch -------------------------------------------------------------------------------- /tools/VMware-ovftool-4.4.1-16812187-lin.x86_64.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/tools/VMware-ovftool-4.4.1-16812187-lin.x86_64.bundle -------------------------------------------------------------------------------- /tools/private_key_for_signing_vmware_image.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9l/vyos-build-action/HEAD/tools/private_key_for_signing_vmware_image.pem --------------------------------------------------------------------------------