Install GNOME and tell user to configure it as part of a Parrot OS setup.

This commit is contained in:
Hyperling 2021-07-11 11:30:59 -05:00
parent 432674a2a0
commit e1476e88e4
2 changed files with 20 additions and 0 deletions

View File

@ -65,6 +65,9 @@
- include: tasks/workstation/linux/cron/ansible.yml
when: ansible_system == "Linux"
- include: tasks/workstation/linux/software/gnome.yml
when: ansible_system == "Linux"
- include: tasks/workstation/settings/gnome.yml
- include: tasks/workstation/settings/nfs.yml

View File

@ -0,0 +1,17 @@
# Some Linux distros come with meh DE's, this fixes that.
- name: Workstation | Linux | Software | GNOME | Install
package:
name: gnome gdm3
state: present
register: gnome_install
when: ansible_distribution in ("Parrot OS")
- name: Workstation | Linux | Software | GNOME | Note Before Exiting
debug:
msg: "You will probably need to run `dpkg-reconfigure gdm3` to ensure gdm3 is selected."
when: gnome_install is defined and gnome_install.changed
- name: Workstation | Linux | Software | GNOME | Exiting
shell: exit 1
when: gnome_install is defined and gnome_install.changed