Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ansible / common-playbook

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • common-playbook
  • preapp.yml
  • ansible's avatar
    no message · 0a4bbd58
    ansible committed Nov 15, 2017
    0a4bbd58 Browse Files
preapp.yml 605 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
---
- hosts: new_host
  become: true
  tasks:
        - name: Install required packages
              apt: name={{ item }} state=present update_cache=yes
              with_items:
               - sysstat
               - gnuplot
               - bc
               - ntp
               - jq
               - parted
               - python3-pip
               - python-dev
               - build-essential
               - plymouth
               - plymouth-theme-edubuntu
        - pip: name={{ item }} state=present
          with_items:
           - virtualenv
           - pexpect
           - pymongo