38 lines
793 B
YAML
Raw Normal View History

---
# Provide FreeBSD with a DE.
2021-02-02 21:28:17 -06:00
- name: Workstation | FreeBSD | GUI | Install UI Components
2021-01-31 12:58:37 -06:00
package:
name:
- xorg
- gnome3
- "{{ firefox_esr }}"
2021-01-31 12:58:37 -06:00
- "{{ thunderbird }}"
state: present
2021-01-31 12:58:37 -06:00
2021-02-02 21:28:17 -06:00
- name: Workstation | FreeBSD | GUI | Uninstall Bloat
2021-01-31 12:58:37 -06:00
package:
name:
- "{{ firefox }}"
2021-01-31 12:58:37 -06:00
- "{{ evolution }}"
state: absent
2021-02-02 21:28:17 -06:00
- name: Workstation | FreeBSD | GUI | Create rc.conf Entries
blockinfile:
path: /etc/rc.conf
block: |
dbus_enable="YES"
hald_enable="YES"
gnome_enable="YES"
gdm_enable="YES"
fusefs_enable="YES"
2021-01-31 14:19:57 -06:00
backup: yes
2021-02-02 21:28:17 -06:00
- name: Workstation | FreeBSD | GUI | Create fstab Entries
blockinfile:
path: /etc/fstab
block: |
proc /proc procfs rw 0 0
2021-01-31 14:19:57 -06:00
backup: yes