-name:Check for filenamefail:msg:Must set logrotate_file_name for logfile to rotatewhen:logrotate_file_name is not defined-assert:that:-logrotate_frequency in ('hourly', 'daily', 'weekly', 'monthly', 'yearly', 'size')fail_msg:Invalid logrotate_frequency-assert:that:-logrotate_sizefail_msg:Must specify size for rotationwhen:logrotate_frequency == 'size'# Hash the full path to avoid any conflicts but remain idempotent.-name:Create a unique config nameset_fact:# NOTE(ianw) 2023-02-13 : we missed that this makes files with# names like "*.1234.conf" when using wild-cards. Below we have# dropped using the file-name component. After we've removed them# we can drop this._old_logrotate_generated_config_file_name:"{{logrotate_file_name|basename}}.{{(logrotate_file_name|hash('sha1'))[0:5]}}.conf"logrotate_generated_config_file_name:"{{(logrotate_file_name|hash('sha1'))[0:6]}}.conf"-name:Clear out potentially confusing config filesfile:state:absentpath:'/etc/logrotate.d/{{_old_logrotate_generated_config_file_name}}'-name:'Install{{logrotate_file_name}}rotatationconfigfile'template:src:logrotate.conf.j2dest:'/etc/logrotate.d/{{logrotate_config_file_name|default(logrotate_generated_config_file_name)}}'owner:rootgroup:rootmode:0644