Commit ee45df69 by ansible

no message

1 parent 7c048bce
Showing with 4 additions and 1 deletions
......@@ -2,8 +2,11 @@
- hosts: new_host
become: true
tasks:
- name: Run the equivalent of "apt-get update" as a separate step
apt:
update_cache: yes
- name: Install required packages
apt: name={{ item }} state=present update_cache=yes
apt: name={{ item }} state=present
with_items:
- sysstat
- gnuplot
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!