123456789101112131415161718192021222324252627282930 |
- ---
- - hosts: all
- become: yes
- become_user: root
- become_method: sudo
- gather_facts: yes
- pre_tasks:
- - name: Update Apt Cache
- apt: update_cache=yes cache_valid_time=86400
- - name: Ubuntu Packages
- apt: >
- pkg={{item}}
- state=present
- with_items:
- - awscli
- - git
- - htop
- - iotop
- - vim
- - sysstat
- - tmux
- - tree
- - tcpdump
- - unzip
- - ntp
- roles:
- - redis-shoot-out
|