system/handlers/main.yml
vincent 2b76a72703
Some checks failed
continuous-integration/drone/push Build is failing
chore: fix formatting warning
2023-08-25 13:47:34 +02:00

27 lines
529 B
YAML

---
- name: Update hostname
ansible.builtin.hostname:
name: "{{ arch_base_hostname }}"
become: true
- name: Update keymap
ansible.builtin.command: localectl set-keymap {{ arch_base_keymap }}
become: true
- name: Update_pacman_repos
become: true
community.general.pacman:
update_cache: true
- name: Restart sshd
ansible.builtin.service:
name: sshd
state: restarted
become: true
- name: Restart_sysctl
ansible.builtin.service:
name: systemd-sysctl
state: restarted
become: true