More organization and beginning to add 1337 share.

This commit is contained in:
2021-02-01 05:03:27 -06:00
parent 834800df8c
commit af1eee5f03
12 changed files with 34 additions and 9 deletions

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