Install GNOME and tell user to configure it as part of a Parrot OS setup.
This commit is contained in:
parent
432674a2a0
commit
e1476e88e4
@ -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
|
||||
|
17
tasks/workstation/linux/software/gnome.yml
Normal file
17
tasks/workstation/linux/software/gnome.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user