Skip to content
Snippets Groups Projects
Commit bfcbd308 authored by John-Paul Robinson's avatar John-Paul Robinson
Browse files

Create compute helper scripts for start, stop, delete

parent 3284529b
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Destroy the compute node for ohpc
VBoxManage unregistervm --delete "$1"
#!/bin/bash
# start the compute node for ohpc
VBoxManage startvm "$1"
#!/bin/bash
# Stop the compute node for ohpc
VBoxManage controlvm "$1" poweroff
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment