37 lines
731 B
YAML
Raw Normal View History

---
# Provide FreeBSD with a DE.
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 }}"
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 }}"
state: absent
2021-02-01 07:58:00 -06:00
- name: FreeBSD | Software | 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-01 07:58:00 -06:00
- name: FreeBSD | Software | Create fstab Entries
blockinfile:
path: /etc/fstab
block: |
proc /proc procfs rw 0 0
2021-01-31 14:19:57 -06:00
backup: yes