Cleaned up the configuration file by removing an extra blank line that was not necessary.
21 lines
445 B
YAML
21 lines
445 B
YAML
---
|
|
# ansible_role_proxmox_provision/handlers/main.yml
|
|
# Handlers for role
|
|
# ==================
|
|
- name: Run apt update
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
|
|
- name: Restart pveproxy
|
|
ansible.builtin.systemd:
|
|
name: pveproxy
|
|
state: restarted
|
|
|
|
- name: Reload systemd
|
|
ansible.builtin.systemd_service:
|
|
daemon_reexec: true
|
|
|
|
- name: logrotate reload
|
|
ansible.builtin.command: logrotate /etc/logrotate.conf
|
|
changed_when: false
|