enable automated setup of physical infrastructure
[integration/packaging/ansible-opendaylight.git] / roles / infra / tasks / install_packages.yml
1 ---
2 - name: Only run "update_cache=yes" if the last one is more than 3600 seconds ago
3   tags:
4     - packages
5     - update_cache
6   apt:
7     update_cache: yes
8     cache_valid_time: 3600
9
10 - name: Install packages if already installed ignore
11   tags:
12     - packages
13     - install
14   action: apt pkg={{item}} state=installed
15   with_items:
16        - git
17        - sshpass
18        - openssh-server
19        - tmux
20        - screen
21        - python
22        - vim
23        - python-docker
24
25 # vim: set et ts=2 sw=2 ai ft=yaml :
26