forked from eoli3n/arch-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-btrfs.yml
34 lines (29 loc) · 867 Bytes
/
install-btrfs.yml
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
---
- hosts: all
become: yes
vars:
user: user
shell: /usr/bin/fish
cmdline: ""
pre_tasks:
# Fix full /tmp when installing lots of AUR
- name: temp increase /tmp size
tags: always
shell: mount -o remount,size=5G,noatime /tmp
- name: include guest role
tags: guest
include_role:
name: guest
when: ansible_virtualization_role == "guest"
roles:
- { role: pacman, tags: pacman }
- { role: aur, tags: aur }
- { role: btrfs/packages, tags: btrfs }
- { role: btrfs/snapper, tags: snapper }
- { role: base, tags: base }
- { role: desktop, tags: desktop }
- { role: virtualization, tags: virtualization }
- { role: containers, tags: containers }
- { role: recovery, tags: recovery }
- { role: btrfs/grub, tags: boot }
- { role: btrfs/initramfs, tags: boot }