zammad: Aktualisiere cron-Job
This commit is contained in:
parent
46a310a65b
commit
1034729a2a
4 changed files with 19 additions and 12 deletions
|
@ -1,6 +1,4 @@
|
|||
---
|
||||
cron_file: /etc/cron.d/zammad
|
||||
|
||||
es_version: "7.10.2"
|
||||
es_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-{{ es_version }}-amd64.deb"
|
||||
es_dl_path: /data
|
||||
|
|
16
tasks/cron.yml
Normal file
16
tasks/cron.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: "cron | Setze Umgebungsvariablen"
|
||||
cron:
|
||||
user: "{{ zammad_user }}"
|
||||
name: RAILS_ENV
|
||||
job: production
|
||||
env: true
|
||||
|
||||
- name: "cron | Richte cron ein"
|
||||
cron:
|
||||
user: "{{ zammad_user }}"
|
||||
name: "Loesche unbenutzte Zammad-Kunden"
|
||||
minute: "1"
|
||||
hour: "1"
|
||||
day: "1"
|
||||
job: " cd {{ zammad_home }} && chronic rbenv exec rails r {{ local_scripts_dir }}/zammad-delete-customers.rb"
|
|
@ -10,6 +10,9 @@
|
|||
- import_tasks: zammad.yml
|
||||
tags: zammad
|
||||
|
||||
- import_tasks: cron.yml
|
||||
tags: cron
|
||||
|
||||
- import_tasks: ruby.yml
|
||||
tags: ruby
|
||||
|
||||
|
|
|
@ -41,16 +41,6 @@
|
|||
dest: "{{ local_scripts_dir }}/zammad-updater"
|
||||
mode: 0755
|
||||
|
||||
- name: "zammad | Richte cron ein"
|
||||
cron:
|
||||
cron_file: "{{ cron_file }}"
|
||||
user: "{{ zammad_user }}"
|
||||
name: "Loesche unbenutzte Zammad-Kunden"
|
||||
minute: "1"
|
||||
hour: "1"
|
||||
day: "1"
|
||||
job: " chronic cd {{ zammad_home }} && RAILS_ENV=production rbenv exec rails r {{ local_scripts_dir }}/zammad-delete-customers.rb"
|
||||
|
||||
- name: "zammad | Erstelle Alias"
|
||||
lineinfile:
|
||||
path: /root/.bashrc
|
||||
|
|
Loading…
Reference in a new issue