Last active
October 16, 2015 10:29
-
-
Save arabyniuk/5a0ce1db88f10da07f4c to your computer and use it in GitHub Desktop.
upstart ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "A test job file for experimenting with Upstart" | |
author "Andrii Rabinyuk" | |
respawn | |
respawn limit unlimited | |
start on runlevel [2345] or started postgresql | |
stop on runlevel [016] or stopping postgresql | |
script | |
psql -d gps_server_development_new -U gps_server -c "select * from update_last_current_data_items()" | |
sleep 10 | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment