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 52e8814 commit 55bf275Copy full SHA for 55bf275
controls/roles/update-services/tasks/update-service.yml
@@ -41,4 +41,11 @@
41
when: service_configuration.autoupdate and (new_service_docker_image_tag != service_docker_image_tag or new_service_docker_image_tag == 'latest')
42
become: yes
43
44
+- name: Update configuration file modification time
45
+ copy:
46
+ path: "/etc/stereum/services/{{ item }}.yaml"
47
+ state: touch
48
+ when: service_configuration.autoupdate and (new_service_docker_image_tag != service_docker_image_tag or new_service_docker_image_tag == 'latest')
49
+ become: yes
50
+
51
# EOF
0 commit comments