Good ol' organization. Tasks folder started getting too busy, and still kind of is.

This commit is contained in:
2021-01-31 18:02:37 -06:00
parent 47be3301e1
commit 0f0f9a3aeb
10 changed files with 18 additions and 12 deletions

35
tasks/freebsd/gui.yml Normal file
View File

@ -0,0 +1,35 @@
---
- name: Install FreeBSD UI Software
package:
name:
- xorg
- gnome3
- "{{ firefox }}"
- "{{ thunderbird }}"
state: present
- name: Uninstall Bloat
package:
name:
- "{{ evolution }}"
state: absent
- name: Add GNOME + SSHFS to rc.conf
blockinfile:
path: /etc/rc.conf
block: |
dbus_enable="YES"
hald_enable="YES"
gnome_enable="YES"
gdm_enable="YES"
fusefs_enable="YES"
backup: yes
- name: Add GNOME to fstab
blockinfile:
path: /etc/fstab
block: |
proc /proc procfs rw 0 0
backup: yes