Merge "Fernet cron path" into stable/pike

This commit is contained in:
Zuul 2019-01-03 12:53:41 +00:00 committed by Gerrit Code Review
commit a5ed74b7f6
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
{% set cron_cmd = 'cron -f' if kolla_base_distro in ['ubuntu', 'debian'] else 'crond -s -n' %}
{% set cron_path = '/var/spool/cron/crontabs/root/fernet-cron' if kolla_base_distro in ['ubuntu', 'debian'] else '/var/spool/cron/root' %}
{
"command": "{{ cron_cmd }}",
"config_files": [{
@ -9,7 +10,7 @@
},
{
"source": "{{ container_config_directory }}/crontab",
"dest": "/var/spool/cron/crontabs/root/fernet-cron",
"dest": "{{ cron_path }}",
"owner": "root",
"perm": "0600"
},