Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change skylark task into btrfs #389

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions inventories/host_vars/skylark.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
drives:
skylark:
uuid: e456364a-f704-4602-9962-334898e05359
uuid: 1085e1e0-8f93-44f2-b546-2e7448864338
mountpoint: /skylark
filesystem: "xfs"
filesystem: "btrfs"
options: "defaults,noatime"
backup:
uuid: 77af48a6-5a47-4e06-a106-c5c74b6d1449
Expand Down
7 changes: 7 additions & 0 deletions tasks/skylark/mount.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
---
- name: "Install btrfs modules"
ansible.builtin.apt:
pkg:
- btrfs-progs
- btrfs-compsize
update_cache: true

- name: Mount up device skylark
ansible.posix.mount:
path: "{{ drives.skylark.mountpoint }}"
Expand Down
15 changes: 0 additions & 15 deletions tasks/skylark/xfs_tuning.yml

This file was deleted.

Loading