There was an error while loading. Please reload this page.
1 parent 2d677bf commit f68b6d1Copy full SHA for f68b6d1
1 file changed
tasks/base/bootc-tweaks.yaml
@@ -25,6 +25,27 @@
25
name: opt.mount
26
enabled: true
27
28
+- name: Add /usr/local mount
29
+ ansible.builtin.copy:
30
+ content: |
31
+ [Unit]
32
+ Description=Mount /usr/local
33
+
34
+ [Mount]
35
+ What=/var/usrlocal
36
+ Where=/usr/local
37
+ Type=none
38
+ Options=bind
39
40
+ [Install]
41
+ WantedBy=multi-user.target
42
+ dest: /usr/lib/systemd/system/usrlocal.mount
43
44
+- name: Enable /usr/local mount
45
+ ansible.builtin.systemd_service:
46
+ name: usrlocal.mount
47
+ enabled: true
48
49
- name: Reboot on Kernel Panic
50
ansible.builtin.copy:
51
content: |
0 commit comments