Files
.github
dev
playbooks
roles
scratch
.gitignore
Jenkinsfile
LICENSE
Makefile
README.md
Vagrantfile
ansible.cfg
forward-ssh.sh
homelab/Makefile

11 lines
150 B
Makefile

.PHONY: clean install
all: install
install:
vagrant up --no-destroy-on-error
sudo ./forward-ssh.sh
clean:
vagrant destroy -f && rm -rf .vagrant