From 4675b1ec7e54ed64478f4e2ef47caf369caf44d0 Mon Sep 17 00:00:00 2001 From: Pi Date: Fri, 14 Jun 2019 09:24:45 -0400 Subject: [PATCH] -add build-essential to installed packages (Ubuntu/Raspbian specific) --- hosts | 2 +- roles/common/tasks/main.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts b/hosts index 686af4b..fc10adb 100755 --- a/hosts +++ b/hosts @@ -9,7 +9,7 @@ sdwsrvl ansible_host=192.168.90.2 site_clli=LSBGFL59 sdwcltm4 ansible_host=192.168.100.2 site_clli=PROVUTZZ sdwcltm6 ansible_host=192.168.200.34 site_clli=PHLJPAMT ubuntu-server-1 ansible_host=192.168.201.2 site_clli=MTLRNJIK -sdwcltm9 ansible_host=192.168.200.163 ansible_user=ubuntu site_clli=NRCRGAQN +sdwcltm9 ansible_host=192.168.200.163 site_clli=NRCRGAQN #192.168.201.3 ipsectest1 ansible_host=192.168.201.90 diff --git a/roles/common/tasks/main.yaml b/roles/common/tasks/main.yaml index 4e843b7..c6044b3 100755 --- a/roles/common/tasks/main.yaml +++ b/roles/common/tasks/main.yaml @@ -33,7 +33,7 @@ - name: install programs and libraries become: true apt: - name: [ 'expect', 'ftp', 'cadaver', 'iperf', 'iperf3', 'libpcap0.8', 'libsctp1', 'libsctp-dev', 'libncurses-dev', 'libssl-dev', 'libpcap-dev', 'vim', 'mc', 'smbclient', 'ncurses-dev' ] + name: [ 'expect', 'ftp', 'cadaver', 'iperf', 'iperf3', 'libpcap0.8', 'libsctp1', 'libsctp-dev', 'libncurses-dev', 'libssl-dev', 'libpcap-dev', 'vim', 'mc', 'smbclient', 'ncurses-dev', 'build-essential' ] update_cache: true state: present tags: install_packages