Created
October 12, 2015 18:43
-
-
Save ssplatt/01b178f610ececa5baad to your computer and use it in GitHub Desktop.
JIRA systemd service file jinja template
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
| [Unit] | |
| {% from "jira/map.jinja" import jira with context %} | |
| Description=JIRA Issue Tracker | |
| After=syslog.target | |
| After=network.target | |
| [Service] | |
| ExecStart={{ jira.install_dir }}/bin/start-jira.sh | |
| ExecStop={{ jira.install_dir }}/bin/stop-jira.sh | |
| RemainAfterExit=yes | |
| [Install] | |
| WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment