diff --git a/tasks/freebsd_gui.yml b/tasks/freebsd_gui.yml index 05b9500..cfc4738 100644 --- a/tasks/freebsd_gui.yml +++ b/tasks/freebsd_gui.yml @@ -12,3 +12,24 @@ 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" + marker: "# {mark} Ansible for GNOME+SSHFS " + backup: yes + +- name: Add GNOME to fstab + blockinfile: + path: /etc/fstab + block: | + proc /proc procfs rw 0 0 + marker: "# {mark} Ansible for GNOME " + backup: yes