Created
May 18, 2016 16:07
-
-
Save chrisking/7bd1ceb78ae6296e5ac38093a160c430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: all | |
| sudo: true | |
| tasks: | |
| - name: Update Apt's Cache | |
| apt: update_cache=yes | |
| - name: Add Ubuntu Extra Repo Support | |
| apt: name={{ item }} update_cache=yes state=latest | |
| with_items: | |
| - software-properties-common | |
| - name: Install All System Software Packages | |
| apt: name={{ item }} update_cache=yes state=latest | |
| with_items: | |
| - git-core | |
| - build-essential | |
| - python3-dev | |
| - postgresql | |
| - libpq-dev | |
| - python-pip | |
| - htop | |
| - name: Create Virtualenv Home | |
| file: path=/home/vagrant/.virtualenvs owner=vagrant recurse=yes state=directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment