Add a script to launch sway on FreeBSD.

This commit is contained in:
Tom Alexander
2022-10-17 15:15:09 -04:00
parent 172b4063ee
commit 1f408202f1
4 changed files with 49 additions and 0 deletions

View File

@@ -89,3 +89,16 @@
path: /etc/rc.conf
start: absent
when: rc_conf is not defined
- name: Add fstab entries
mount:
name: "{{ item.dst }}"
src: "{{ item.src }}"
fstype: "{{ item.fstype }}"
opts: "{{ item.opts }}"
state: present
loop:
- dst: /tmp
src: tmpfs
fstype: tmpfs
opts: rw,mode=777