diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-22 10:35:32 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-22 10:35:32 +0200 |
| commit | 1d48d7d526c63caf8a08e0bd9972152b9f27c266 (patch) | |
| tree | 4fd98ee38dc55c6888d122b9ccf1daebe507e50b /roles/gnome/vars | |
| parent | e584ccf94867d45b22bfa89522e0e00263bf11a2 (diff) | |
Refactor gnome not to pull unnecessary deps (like avahi)
The recommended debian/ubuntu install of gnome pulls avahi-daemon and
that could potentially conflicts with NetworkManager.
Therefore resorting to more restrictive approach for installing gnome
Diffstat (limited to 'roles/gnome/vars')
| -rw-r--r-- | roles/gnome/vars/debian.yml | 5 | ||||
| -rw-r--r-- | roles/gnome/vars/ubuntu.yml | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/roles/gnome/vars/debian.yml b/roles/gnome/vars/debian.yml index 58039e57..085897ea 100644 --- a/roles/gnome/vars/debian.yml +++ b/roles/gnome/vars/debian.yml @@ -2,3 +2,8 @@ gnome_packages: - "gnome-core" - "gdm3" + - "network-manager-gnome" + - "firefox-esr" + - "gnome-software" + - "packagekit" + - "appstream" diff --git a/roles/gnome/vars/ubuntu.yml b/roles/gnome/vars/ubuntu.yml new file mode 100644 index 00000000..37976324 --- /dev/null +++ b/roles/gnome/vars/ubuntu.yml @@ -0,0 +1,9 @@ +--- +gnome_packages: + - "gnome-core" + - "gdm3" + - "network-manager-gnome" + - "firefox" + - "gnome-software" + - "packagekit" + - "appstream" |
