mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
26 lines
518 B
YAML
26 lines
518 B
YAML
---
|
|
- name: Copy pacman configuration file
|
|
copy:
|
|
src: pacman.conf
|
|
dest: /etc/pacman.conf
|
|
|
|
- name: Refresh pacman mirrors
|
|
pacman:
|
|
update_cache: yes
|
|
|
|
- name: Install inetutils for hostname
|
|
pacman:
|
|
name: inetutils
|
|
state: present
|
|
|
|
- name: Set the hostname
|
|
hostname:
|
|
name: "{{ hostname }}"
|
|
when: hostname is defined
|
|
|
|
- include_tasks: user.yml
|
|
- include_tasks: sudo.yml
|
|
- include_tasks: aur_user.yml
|
|
- include_tasks: shell.yml
|
|
- include_tasks: packages.yml
|
|
- include_tasks: journal.yml
|