Advertisement
Guest User

grimsqueaker

a guest
Feb 2nd, 2010
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # virtualbox.conf
  2. # virtualbox - virtual machines
  3. #
  4. # This is my first attempt at having virtual machines run as a service.
  5. #
  6.  
  7. description "virtualbox daemon"
  8.  
  9. start on runlevel [2345]
  10. stop on runlevel [!2345]
  11.  
  12. pre-start script
  13. exec VBoxHeadless --startvm UD91032
  14. end script
  15.  
  16. pre-stop script
  17. VBoxManage controlvm UD91032 savestate
  18. end script
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement