Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion tasks/web_nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
name="concourse-web"
state="started"
enabled=True
ignore_errors: "{{ concourse_ignore_errors }}"
ignore_errors: true
when: "ansible_system == 'Linux'"

- name: web | Templating concourse web start launchd plist (macOSx)
Expand Down Expand Up @@ -107,3 +107,11 @@
when: "{{ concourseci_web_resource_type_defaults | dict2items | length > 0 }}"
notify:
- restart concourse-web

- name: web | Ensure Concourse web is running and Starts on boot (linux)
service:
name="concourse-web"
state="started"
enabled=True
ignore_errors: "{{ concourse_ignore_errors }}"
when: "ansible_system == 'Linux'"