github.com/masahide/goansible@v0.0.0-20160116054156-01eac649e9f2/sample/base/roles/build_essential/tasks/main.yml (about) 1 --- 2 - name: Update apt-get cache 3 apt: update_cache=yes cache_time=60m 4 5 - name: Install build packages 6 apt: pkg=$item state=present 7 with_items: 8 - autoconf 9 - binutils-doc 10 - bison 11 - build-essential 12 - flex