├── .github └── FUNDING.yml ├── LICENSE ├── Makefile ├── README.md ├── lib ├── vm-base ├── vm-cmd ├── vm-config ├── vm-core ├── vm-datastore ├── vm-guest ├── vm-info ├── vm-migration ├── vm-rctl ├── vm-run ├── vm-switch ├── vm-switch-manual ├── vm-switch-netgraph ├── vm-switch-standard ├── vm-switch-vale ├── vm-switch-vxlan ├── vm-util └── vm-zfs ├── rc.d └── vm ├── sample-templates ├── alpine.conf ├── arch.conf ├── centos6.conf ├── centos7.conf ├── config.sample ├── coreos.conf ├── debian.conf ├── default.conf ├── dragonfly.conf ├── freebsd-zvol.conf ├── freepbx.conf ├── gentoo.conf ├── linux-zvol.conf ├── netbsd.conf ├── openbsd.conf ├── resflash.conf ├── ubuntu.conf └── windows.conf ├── vm └── vm.8 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/README.md -------------------------------------------------------------------------------- /lib/vm-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-base -------------------------------------------------------------------------------- /lib/vm-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-cmd -------------------------------------------------------------------------------- /lib/vm-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-config -------------------------------------------------------------------------------- /lib/vm-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-core -------------------------------------------------------------------------------- /lib/vm-datastore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-datastore -------------------------------------------------------------------------------- /lib/vm-guest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-guest -------------------------------------------------------------------------------- /lib/vm-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-info -------------------------------------------------------------------------------- /lib/vm-migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-migration -------------------------------------------------------------------------------- /lib/vm-rctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-rctl -------------------------------------------------------------------------------- /lib/vm-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-run -------------------------------------------------------------------------------- /lib/vm-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch -------------------------------------------------------------------------------- /lib/vm-switch-manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch-manual -------------------------------------------------------------------------------- /lib/vm-switch-netgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch-netgraph -------------------------------------------------------------------------------- /lib/vm-switch-standard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch-standard -------------------------------------------------------------------------------- /lib/vm-switch-vale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch-vale -------------------------------------------------------------------------------- /lib/vm-switch-vxlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-switch-vxlan -------------------------------------------------------------------------------- /lib/vm-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-util -------------------------------------------------------------------------------- /lib/vm-zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/lib/vm-zfs -------------------------------------------------------------------------------- /rc.d/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/rc.d/vm -------------------------------------------------------------------------------- /sample-templates/alpine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/alpine.conf -------------------------------------------------------------------------------- /sample-templates/arch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/arch.conf -------------------------------------------------------------------------------- /sample-templates/centos6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/centos6.conf -------------------------------------------------------------------------------- /sample-templates/centos7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/centos7.conf -------------------------------------------------------------------------------- /sample-templates/config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/config.sample -------------------------------------------------------------------------------- /sample-templates/coreos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/coreos.conf -------------------------------------------------------------------------------- /sample-templates/debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/debian.conf -------------------------------------------------------------------------------- /sample-templates/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/default.conf -------------------------------------------------------------------------------- /sample-templates/dragonfly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/dragonfly.conf -------------------------------------------------------------------------------- /sample-templates/freebsd-zvol.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/freebsd-zvol.conf -------------------------------------------------------------------------------- /sample-templates/freepbx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/freepbx.conf -------------------------------------------------------------------------------- /sample-templates/gentoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/gentoo.conf -------------------------------------------------------------------------------- /sample-templates/linux-zvol.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/linux-zvol.conf -------------------------------------------------------------------------------- /sample-templates/netbsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/netbsd.conf -------------------------------------------------------------------------------- /sample-templates/openbsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/openbsd.conf -------------------------------------------------------------------------------- /sample-templates/resflash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/resflash.conf -------------------------------------------------------------------------------- /sample-templates/ubuntu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/ubuntu.conf -------------------------------------------------------------------------------- /sample-templates/windows.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/sample-templates/windows.conf -------------------------------------------------------------------------------- /vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/vm -------------------------------------------------------------------------------- /vm.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/churchers/vm-bhyve/HEAD/vm.8 --------------------------------------------------------------------------------