Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaredledvina/archlinux-box
Packer and Vagrant project to generate test Archlinux virtual machines
https://github.com/jaredledvina/archlinux-box
archlinux packer vagrant virtualbox
Last synced: 4 days ago
JSON representation
Packer and Vagrant project to generate test Archlinux virtual machines
- Host: GitHub
- URL: https://github.com/jaredledvina/archlinux-box
- Owner: jaredledvina
- Created: 2018-03-31T19:16:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-22T17:45:05.000Z (about 5 years ago)
- Last Synced: 2024-11-29T19:48:41.771Z (about 2 months ago)
- Topics: archlinux, packer, vagrant, virtualbox
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How to use
1. Install Packer: https://www.packer.io/docs/install/index.html
2. Installed Vagrant: https://www.vagrantup.com/docs/installation/
3. `cd packer`
4. `packer build -force archlinux.json`
5. `cd ..`
6. `vagrant up`
7. `vagrant ssh`To debug/step through the Packer build, use `packer build -force -debug archlinux.json`
Alternatively, if you want to be prompted only on failures. use ` packer build -on-error=ask -force archlinux.json`To force a full rebuild and reset Vagrant:
1. `rm -rf packer/{archlinux.box,archlinux.box.checksum,output-virtualbox-iso}`
2. `vagrant box remove --all --force archlinux-box`
3. Follow the build steps above