We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f41c6 commit 30bb5f1Copy full SHA for 30bb5f1
tasks/install_runner.yml
@@ -142,15 +142,15 @@
142
state: started
143
enabled: yes
144
ignore_errors: "{{ ansible_check_mode }}"
145
- when: runner_version in runner_installed.stdout and runner_state|lower == "started"
+ when: runner_state|lower == "started"
146
147
- name: STOP and disable Github Actions Runner service
148
systemd:
149
name: "{{ runner_service.content | b64decode | replace('\n', '') }}"
150
state: stopped
151
enabled: no
152
153
- when: runner_version in runner_installed.stdout and runner_state|lower == "stopped"
+ when: runner_state|lower == "stopped"
154
155
- name: Version changed - RESTART Github Actions Runner service
156
0 commit comments