├── .gitignore ├── LICENSE ├── README.md ├── TODO.org ├── Vagrantfile ├── bin └── vagrant-setup.sh ├── boot └── loader.conf ├── etc ├── make.conf ├── motd ├── pf.conf ├── rc.conf └── resolv.conf └── pkg ├── bash-4.3.42.txz ├── ca_root_nss-3.20.txz ├── indexinfo-0.2.3.txz ├── iocage-1.7.3.txz ├── pkg-1.5.6.txz ├── sudo-1.8.14p3.txz └── virtualbox-ose-additions-4.3.30.txz /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw? 2 | .vagrant/ 3 | *.box 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/README.md -------------------------------------------------------------------------------- /TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/TODO.org -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/vagrant-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/bin/vagrant-setup.sh -------------------------------------------------------------------------------- /boot/loader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/boot/loader.conf -------------------------------------------------------------------------------- /etc/make.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/etc/make.conf -------------------------------------------------------------------------------- /etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/etc/motd -------------------------------------------------------------------------------- /etc/pf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/etc/pf.conf -------------------------------------------------------------------------------- /etc/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/etc/rc.conf -------------------------------------------------------------------------------- /etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/etc/resolv.conf -------------------------------------------------------------------------------- /pkg/bash-4.3.42.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/bash-4.3.42.txz -------------------------------------------------------------------------------- /pkg/ca_root_nss-3.20.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/ca_root_nss-3.20.txz -------------------------------------------------------------------------------- /pkg/indexinfo-0.2.3.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/indexinfo-0.2.3.txz -------------------------------------------------------------------------------- /pkg/iocage-1.7.3.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/iocage-1.7.3.txz -------------------------------------------------------------------------------- /pkg/pkg-1.5.6.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/pkg-1.5.6.txz -------------------------------------------------------------------------------- /pkg/sudo-1.8.14p3.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/sudo-1.8.14p3.txz -------------------------------------------------------------------------------- /pkg/virtualbox-ose-additions-4.3.30.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wunki/vagrant-freebsd/HEAD/pkg/virtualbox-ose-additions-4.3.30.txz --------------------------------------------------------------------------------