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