Skip to content

Commit cd62384

Browse files
author
Derek
committed
feat: enable LibreOffice by default in desktop builds
Changed dfe_install_libreoffice default from false to true. LibreOffice now installs by default for both Fedora and Ubuntu. Set dfe_install_libreoffice: false to disable if needed.
1 parent 73c30f0 commit cd62384

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ansible/roles/dfe_developer/tasks/desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
state: present
1919
when:
2020
- ansible_facts['distribution'] == 'Fedora'
21-
- dfe_install_libreoffice | default(false)
21+
- dfe_install_libreoffice | default(true)
2222

2323
- name: Set default target to graphical (Fedora)
2424
ansible.builtin.command:
@@ -71,7 +71,7 @@
7171
state: present
7272
when:
7373
- ansible_facts['distribution'] == 'Ubuntu'
74-
- dfe_install_libreoffice | default(false)
74+
- dfe_install_libreoffice | default(true)
7575

7676
- name: Set default target to graphical (Ubuntu)
7777
ansible.builtin.command:

0 commit comments

Comments
 (0)