Kris Lamoureux
943b64fdcf
- Include cgroup.conf configuration - Install slurm-client on compute nodes - Move home dir to /vagrant for result sharing - Add Makefile for streamlined setup and cleanup - Fix idempotency issues
11 lines
214 B
Makefile
11 lines
214 B
Makefile
.PHONY: all vagrant clean
|
|
|
|
all: vagrant
|
|
|
|
vagrant:
|
|
vagrant up --no-destroy-on-error --no-color | tee ./vagrantup.log
|
|
|
|
clean:
|
|
vagrant destroy -f --no-color
|
|
rm -rf .vagrant vagrantup.log munge.key ./scratch/submit
|