blob: 6fb57e401c685c2a64248bc4f863a3071aa1da6d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
- name: As root user
become: true
block:
- name: Fail if there're uncommitted changes in /etc
when: etc_versioned
block:
- name: Check for changes in /etc
ansible.builtin.command: git status --porcelain=v1
args:
chdir: /etc
register: git_status
changed_when: false
- ansible.builtin.fail:
msg: There are uncommitted changes in /etc
when: git_status.stdout
- name: Rate pacman mirrors
ansible.builtin.shell: |
. /etc/os-release && rate-mirrors \
--allow-root \
--disable-comments \
--save /etc/pacman.d/mirrorlist \
"$ID"
- name: Commit pacman.d/mirrorlist
when: etc_versioned
block:
- name: Check for changes in /etc
ansible.builtin.command: git status --porcelain=v1
args:
chdir: /etc
register: git_status
changed_when: false
- name: Fail if there're other uncommitted changes
ansible.builtin.fail:
msg: How did this happen?
when: git_status.stdout != ' M pacman.d/mirrorlist'
- name: Commit changes in /etc/pacman.d/mirrorlist
ansible.builtin.command: |
etckeeper commit 'rate-mirrors'
|