We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eab26d commit 45d4c92Copy full SHA for 45d4c92
roles/cfg_openwrt/tasks/conditional_packages.yml
@@ -78,6 +78,17 @@
78
when: (low_mem | default(false) or low_flash | default(false)) and role != "corerouter"
79
loop: "{{ all_luci_base__packages__to_merge }}"
80
81
+- name: "Remove Luci packages on low mem and low flash not removed by the above"
82
+ set_fact:
83
+ packages: "{{ packages + [item] }}"
84
+ when: low_mem | default(false) or low_flash | default(false)
85
+ loop:
86
+ - -luci-app-olsr
87
+ - -luci-app-olsr-services
88
+ - -luci-mod-falter
89
+ - -luci-mod-admin-full
90
+ - -luci-proto-ipv6
91
+ - -luci-theme-bootstrap
92
93
- name: "Disable uhttpd on low mem"
94
set_fact:
0 commit comments