Commit 068491cb by ansible

no message

1 parent f6db6582
Showing with 12 additions and 6 deletions
- name: Run the equivalent of "apt-get update" as a separate step - name: Run the equivalent of "apt-get update" as a separate step
apt: apt:
update_cache: yes update_cache: yes
- name: Install required packages - name: Install required packages
apt: name={{ item }} state=present apt: name={{ item }} state=present
with_items: with_items:
- sysstat
- gnuplot
- bc
- ntp
- jq
- parted - parted
- python3-pip - python3-pip
- python-dev - python-dev
...@@ -16,10 +12,20 @@ ...@@ -16,10 +12,20 @@
- plymouth - plymouth
- plymouth-theme-edubuntu - plymouth-theme-edubuntu
- unzip - unzip
- lsof
- pip: name={{ item }} state=present - pip: name={{ item }} state=present
with_items: with_items:
- virtualenv - virtualenv
- pexpect - pexpect
- pymongo - pymongo
- name: Install required packages
apt: name={{ item }} state=present
with_items:
- lsof
- sysstat
- gnuplot
- bc
- ntp
- jq
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!