enable system-specific software installation

This commit is contained in:
Glenn K. Lockwood
2018-10-28 22:25:11 -07:00
parent 943e8e5228
commit 59764fee10
2 changed files with 13 additions and 2 deletions
+11 -2
View File
@@ -1,6 +1,6 @@
---
### Uninstall Raspbian bloat
# Uninstall Raspbian bloat
- name: remove raspbian bloat
apt:
name="{{ packages }}"
@@ -20,7 +20,7 @@
tags:
- sw
### Install required software
# Install required software
- name: install basic software environment
apt:
name="{{ packages }}"
@@ -34,3 +34,12 @@
- ufw
tags:
- sw
- name: install additional software
apt:
name="{{ myconfig.extra_software }}"
state=present
update_cache=yes
when: "'extra_software' in myconfig"
tags:
- sw