fix start script name
This commit is contained in:
parent
2bfbcf2495
commit
ccf2370e04
2 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@
|
||||||
- name: Copy start script
|
- name: Copy start script
|
||||||
template:
|
template:
|
||||||
- src: start.sh
|
- src: start.sh
|
||||||
dest: "{{ cat_git_destination }}"
|
dest: "{{ cat_git_destination }}"/start.sh
|
||||||
owner: cat
|
owner: cat
|
||||||
group: cat
|
group: cat
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ After=network.target
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
WorkingDirectory={{ cat_git_destination }}
|
WorkingDirectory={{ cat_git_destination }}
|
||||||
ExecStart={{ cat_git_destination }}/start
|
ExecStart={{ cat_git_destination }}/start.sh
|
||||||
Restart=on-failure # or always, on-abort, etc
|
Restart=on-failure # or always, on-abort, etc
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|
Loading…
Reference in a new issue