refactor ♻️: Refactor logrotate configuration for better organization and maintainability.
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 6s
Gitleaks Scan / gitleaks (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 37s
Markdown Lint / markdown-lint (push) Successful in 5s
ansible-lint / Ansible Lint (pull_request) Failing after 6s
Gitleaks Scan / gitleaks (pull_request) Successful in 4s
Markdown Lint / markdown-lint (pull_request) Successful in 5s
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 6s
Gitleaks Scan / gitleaks (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 37s
Markdown Lint / markdown-lint (push) Successful in 5s
ansible-lint / Ansible Lint (pull_request) Failing after 6s
Gitleaks Scan / gitleaks (pull_request) Successful in 4s
Markdown Lint / markdown-lint (pull_request) Successful in 5s
This commit refactors the logrotate configuration by installing and customizing policies, replacing the logrotate command with a service restart in handlers, and adding new templates for Proxmox firewall and general logs. This improves the overall structure and manageability of the logrotate settings.
This commit is contained in:
@@ -12,5 +12,16 @@ proxmox_min_ram_mb_for_no_swap: 16384
|
|||||||
proxmox_enable_powertop: true
|
proxmox_enable_powertop: true
|
||||||
|
|
||||||
# Logrotate
|
# Logrotate
|
||||||
proxmox_logrotate_maxsize: "100M"
|
proxmox_logrotate_enabled: true
|
||||||
proxmox_logrotate_rotate: 7
|
|
||||||
|
proxmox_logrotate_rotate: 4
|
||||||
|
proxmox_logrotate_maxsize: 100M
|
||||||
|
proxmox_logrotate_frequency: daily
|
||||||
|
|
||||||
|
proxmox_logrotate_compress: true
|
||||||
|
proxmox_logrotate_delaycompress: true
|
||||||
|
proxmox_logrotate_missingok: true
|
||||||
|
proxmox_logrotate_notifempty: true
|
||||||
|
|
||||||
|
# Destination override file
|
||||||
|
proxmox_logrotate_file: /etc/logrotate.d/99-proxmox-custom
|
||||||
@@ -15,6 +15,8 @@
|
|||||||
ansible.builtin.systemd_service:
|
ansible.builtin.systemd_service:
|
||||||
daemon_reexec: true
|
daemon_reexec: true
|
||||||
|
|
||||||
- name: Logrotate reload
|
- name: Restart logrotate
|
||||||
ansible.builtin.command: logrotate /etc/logrotate.conf
|
ansible.builtin.service:
|
||||||
changed_when: false
|
name: logrotate
|
||||||
|
state: restarted
|
||||||
|
become: true
|
||||||
|
|||||||
@@ -1,111 +1,30 @@
|
|||||||
---
|
---
|
||||||
|
- name: "Proxmox | Ensure logrotate is installed"
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: logrotate
|
||||||
|
state: present
|
||||||
|
update_cache: yes
|
||||||
|
become: true
|
||||||
|
when: proxmox_logrotate_enabled
|
||||||
|
|
||||||
- name: logrotate | Configure all main Proxmox logs
|
- name: logrotate | pve logrotate policy
|
||||||
|
ansible.builtin.template:
|
||||||
vars:
|
src: pve-logrotate.j2
|
||||||
proxmox_logrotate_files:
|
dest: "/etc/logrotate.d/99-pve-custom"
|
||||||
- /etc/logrotate.conf
|
|
||||||
- /etc/logrotate.d/pve
|
|
||||||
- /etc/logrotate.d/pve-firewall
|
|
||||||
loop: "{{ proxmox_logrotate_files }}"
|
|
||||||
loop_control:
|
|
||||||
loop_var: item
|
|
||||||
|
|
||||||
block:
|
|
||||||
|
|
||||||
- name: logrotate | Check if exists {{ item }}
|
|
||||||
ansible.builtin.stat:
|
|
||||||
path: "{{ item }}"
|
|
||||||
register: logrotate_file
|
|
||||||
|
|
||||||
- name: logrotate | Configure {{ item }}
|
|
||||||
when: logrotate_file.stat.exists
|
|
||||||
block:
|
|
||||||
|
|
||||||
- name: logrotate | Backup once {{ item }}
|
|
||||||
ansible.builtin.copy:
|
|
||||||
src: "{{ item }}"
|
|
||||||
dest: "{{ item }}.original"
|
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
remote_src: true
|
become: true
|
||||||
args:
|
when: proxmox_logrotate_enabled
|
||||||
creates: "{{ item }}.original"
|
notify: Restart logrotate
|
||||||
|
|
||||||
- name: logrotate | Ensure daily rotation
|
- name: logrotate | pve-firewall logrotate policy
|
||||||
ansible.builtin.replace:
|
ansible.builtin.template:
|
||||||
path: "{{ item }}"
|
src: pve-firewall-logrotate.j2
|
||||||
regexp: '^\s*weekly'
|
dest: "/etc/logrotate.d/99-pve-firewall-custom"
|
||||||
replace: 'daily'
|
owner: root
|
||||||
notify: Logrotate reload
|
group: root
|
||||||
|
mode: "0644"
|
||||||
- name: logrotate | Set rotate (number of retained logs)
|
become: true
|
||||||
ansible.builtin.lineinfile:
|
when: proxmox_logrotate_enabled
|
||||||
path: "{{ item }}"
|
notify: Restart logrotate
|
||||||
regexp: '^(\s*rotate\s+).*'
|
|
||||||
line: ' rotate {{ proxmox_logrotate_rotate }}'
|
|
||||||
state: present
|
|
||||||
insertafter: '^\s*daily'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Ensure maxsize is set
|
|
||||||
ansible.builtin.lineinfile:
|
|
||||||
path: "{{ item }}"
|
|
||||||
regexp: '^(\s*maxsize\s+).*'
|
|
||||||
line: ' maxsize {{ proxmox_logrotate_maxsize }}'
|
|
||||||
state: present
|
|
||||||
insertafter: '^\s*rotate'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Ensure Compress
|
|
||||||
ansible.builtin.lineinfile:
|
|
||||||
path: "{{ item }}"
|
|
||||||
regexp: '^\s*compress\b'
|
|
||||||
line: ' compress'
|
|
||||||
state: present
|
|
||||||
insertafter: '^\s*maxsize'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Ensure delaycompress
|
|
||||||
ansible.builtin.lineinfile:
|
|
||||||
path: "{{ item }}"
|
|
||||||
regexp: '^\s*delaycompress\b'
|
|
||||||
line: ' delaycompress'
|
|
||||||
state: present
|
|
||||||
insertafter: '^\s*compress'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
# only for logrotate.conf
|
|
||||||
|
|
||||||
- name: logrotate | Uncomment dateext if commented
|
|
||||||
ansible.builtin.replace:
|
|
||||||
path: /etc/logrotate.conf
|
|
||||||
regexp: '^\s*#\s*(dateext)\b'
|
|
||||||
replace: '\1'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Uncomment compress if commented
|
|
||||||
ansible.builtin.replace:
|
|
||||||
path: /etc/logrotate.conf
|
|
||||||
regexp: '^\s*#\s*(compress)\b'
|
|
||||||
replace: '\1'
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Ensure missingok is present
|
|
||||||
ansible.builtin.lineinfile:
|
|
||||||
path: /etc/logrotate.conf
|
|
||||||
regexp: '^\s*missingok\b'
|
|
||||||
line: 'missingok'
|
|
||||||
state: present
|
|
||||||
insertafter: EOF
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|
||||||
- name: logrotate | Ensure notifempty is present
|
|
||||||
ansible.builtin.lineinfile:
|
|
||||||
path: /etc/logrotate.conf
|
|
||||||
regexp: '^\s*notifempty\b'
|
|
||||||
line: 'notifempty'
|
|
||||||
state: present
|
|
||||||
insertafter: EOF
|
|
||||||
notify: Logrotate reload
|
|
||||||
|
|||||||
25
templates/pve-firewall-logrotate.j2
Normal file
25
templates/pve-firewall-logrotate.j2
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# Managed by Ansible - Proxmox Logrotate Policy
|
||||||
|
# Do not edit manually
|
||||||
|
|
||||||
|
/var/log/pve-firewall.log { {
|
||||||
|
rotate {{ proxmox_logrotate_rotate }}
|
||||||
|
{{ proxmox_logrotate_frequency }}
|
||||||
|
maxsize {{ proxmox_logrotate_maxsize }}
|
||||||
|
{% if proxmox_logrotate_compress %}
|
||||||
|
compress
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_delaycompress %}
|
||||||
|
delaycompress
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_missingok %}
|
||||||
|
missingok
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_notifempty %}
|
||||||
|
notifempty
|
||||||
|
{% endif %}
|
||||||
|
sharedscripts
|
||||||
|
create 640 root adm
|
||||||
|
postrotate
|
||||||
|
invoke-rc.d pvefw-logger restart 2>/dev/null >/dev/null || true
|
||||||
|
endscript
|
||||||
|
}
|
||||||
26
templates/pve-logrotate.j2
Normal file
26
templates/pve-logrotate.j2
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Managed by Ansible - Proxmox Logrotate Policy
|
||||||
|
# Do not edit manually
|
||||||
|
|
||||||
|
/var/log/pveproxy/access.log {
|
||||||
|
rotate {{ proxmox_logrotate_rotate }}
|
||||||
|
{{ proxmox_logrotate_frequency }}
|
||||||
|
maxsize {{ proxmox_logrotate_maxsize }}
|
||||||
|
{% if proxmox_logrotate_compress %}
|
||||||
|
compress
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_delaycompress %}
|
||||||
|
delaycompress
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_missingok %}
|
||||||
|
missingok
|
||||||
|
{% endif %}
|
||||||
|
{% if proxmox_logrotate_notifempty %}
|
||||||
|
notifempty
|
||||||
|
{% endif %}
|
||||||
|
create 640 www-data www-data
|
||||||
|
sharedscripts
|
||||||
|
postrotate
|
||||||
|
/bin/systemctl try-reload-or-restart pveproxy.service
|
||||||
|
/bin/systemctl try-reload-or-restart spiceproxy.service
|
||||||
|
endscript
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user