--- - name: Install aptitude apt: pkg=aptitude state=present cache_valid_time=1800 tags: packages - name: Install the basic python packages apt: pkg={{ default_python_packages }} state=present update_cache=yes cache_valid_time=1800 when: not is_trusty tags: packages - name: Install the basic python packages on trusty apt: pkg={{ default_python_packages_trusty }} state=present update_cache=yes cache_valid_time=1800 when: is_trusty | bool tags: packages - name: Install python-lxml on bionic apt: pkg=python-lxml state=present update_cache=yes cache_valid_time=1800 when: is_bionic | bool tags: packages - name: Install software-properties-common if needed apt: pkg=software-properties-common state=present update_cache=yes cache_valid_time=1800 when: is_ubuntu | bool tags: packages - name: Default the backports repository on debian 7 copy: src=backports-wheezy dest=/etc/apt/preferences.d/backports owner=root group=root mode=644 when: is_debian7 | bool tags: wheezy-backports - name: Install the backports repository on debian 7 apt_repository: repo='deb http://http.debian.net/debian wheezy-backports main' state=present update_cache=yes when: is_debian7 | bool tags: wheezy-backports - name: Install the backports repository on debian 8 apt_repository: repo='deb http://http.debian.net/debian jessie-backports main' state=present update_cache=yes when: is_debian8 | bool tags: jessie-backports - name: apt key for the internal ppa repository apt_key: url=http://ppa.research-infrastructures.eu/system/keys/system-archive.asc state=present when: - is_ubuntu | bool - egi_image is not defined or not egi_image - infrascience_internal_ppa | bool ignore_errors: True tags: packages - name: Remove the broken system apt repository apt_repository: repo='deb http://ppa.research-infrastructures.eu/system stable main' state=absent when: is_ubuntu | bool tags: packages - name: setup system apt repository apt_repository: repo='deb [arch=amd64] http://ppa.research-infrastructures.eu/system stable main' update_cache=yes when: - is_ubuntu | bool - infrascience_internal_ppa | bool ignore_errors: True tags: packages - name: Remove the broken system apt repository for specific distributions apt_repository: repo='deb http://ppa.research-infrastructures.eu/system {{ ansible_distribution_release }} main' state=absent when: is_trusty | bool tags: packages - name: setup system apt repository for specific distributions apt_repository: repo='deb [arch=amd64] http://ppa.research-infrastructures.eu/system {{ ansible_distribution_release }} main' update_cache=yes when: - is_trusty | bool - infrascience_internal_ppa | bool ignore_errors: True tags: packages - name: Setup the infrascience trusty repository apt_repository: repo='deb [arch=amd64] http://ppa.research-infrastructures.eu/trusty-infrascience {{ ansible_distribution_release }} main' update_cache=yes when: - is_trusty | bool - infrascience_internal_ppa | bool ignore_errors: True tags: packages - name: install common packages apt: pkg={{ common_packages }} state={{ pkg_state }} update_cache=yes cache_valid_time=1800 tags: [ 'packages', 'common_pkgs' ] - name: Install additional packages, if any apt: pkg={{ additional_packages | default([]) }} state={{ pkg_state }} update_cache=yes cache_valid_time=1800 tags: [ 'packages', 'common_pkgs', 'additional_packages' ]