Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. #/etc/init/gvupstartcontrol.conf
  2. description "Control all upstart services"
  3. author "fedora newb"
  4.  
  5. start on runlevel [2345]
  6.  
  7. script
  8.     sudo start attendance
  9. end script
  10.  
  11. -------------------------------------------------
  12.  
  13. #/ect/init/attendance.conf
  14. description "Fires command to save attendance"
  15. author "fedora newb"
  16.  
  17. script
  18. exec php /home/vagrant/gv/artisan queue: work --daemon --env=local --memory=-1 --queue=attendance
  19. end script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement