fix missing vars error
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2020-10-10 14:03:07 +02:00
parent 3139e6bd9b
commit 62e7a952c1
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
4 changed files with 9 additions and 10 deletions

View File

@ -1,3 +1,2 @@
---
- include_tasks: setup.yml
- include_tasks: post.yml

View File

@ -1,9 +0,0 @@
---
- name: Ensure renovatebot timer is up and running
systemd:
name: renovate.timer
daemon_reload: yes
enabled: yes
state: started
become: True
become_user: root

View File

@ -17,5 +17,12 @@
src: etc/systemd/system/renovate.service.j2
dest: /etc/systemd/system/renovate.service
notify: __renovate_restart
- name: Ensure renovatebot timer is up and running
systemd:
name: renovate.timer
daemon_reload: yes
enabled: yes
state: started
become: True
become_user: root

View File

@ -6,4 +6,6 @@ RENOVATE_AUTODISCOVER="{{ renovatebot_autodiscover | bool | lower }}"
RENOVATE_ENDPOINT="{{ renovatebot_endpoint }}"
RENOVATE_GIT_AUTHOR="{{ renovatebot_git_author }}"
RENOVATE_PLATFORM="{{ renovatebot_platform }}"
{% if renovatebot_token is defined %}
RENOVATE_TOKEN="{{ renovatebot_token }}"
{% endif %}