So I read this How do I write a bash script to restart a process if it dies? and quickly discovered that this was not the dilemma I'm facing.
I copied the below into /etc/init/
and it appears to be working.
description "Forever my process"
start on started mountall
stop on shutdown
respawn
respawn limit 5 5
script
export HOME="/root"
exec my_process >> /var/log/my-process.log 2>&1
end script