18
Makefile
Normal file
18
Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
provision:
|
||||
vagrant provision
|
||||
|
||||
down:
|
||||
vagrant destroy -f
|
||||
|
||||
clean: down up
|
||||
|
||||
up: vagrant.ign
|
||||
vagrant up
|
||||
|
||||
vagrant.ign: vagrant_INSECURE.ign setup.ign
|
||||
butane --pretty --strict -d . vagrant.bu > vagrant.ign
|
||||
|
||||
setup.ign: setup.bu
|
||||
butane --pretty --strict -d . setup.bu > setup.ign
|
||||
|
||||
.PHONY: provision down up clean
|
Reference in New Issue
Block a user