Ignore:
Timestamp:
2024-02-02T18:04:33+13:00 (4 months ago)
Author:
davidb
Message:

Fixed up task as a result of testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/ansible-playbooks/greenstone3-svn-base-debian-task.yml

    r38653 r38674  
    1 - name: Installing required command-line tools
    2   hosts:      localhost
    3   connection: local
    4   become:     true
    51
    6   tasks:
    7     - name: Changing Ansible to use 'aptitude' as package installation manager
    8       apt: name=aptitude update_cache=yes state=latest force_apt_get=yes
     2- name: Changing Ansible to use 'aptitude' as package installation manager
     3  apt: name=aptitude update_cache=yes state=latest force_apt_get=yes
    94
    10     - name: Ensure that existing packages are up-to-date (within last 30 mins)
    11       apt: update_cache=yes state=latest force_apt_get=yes cache_valid_time=1800
     5- name: Ensure that existing packages are up-to-date (within last 30 mins)
     6  apt: update_cache=yes state=latest force_apt_get=yes cache_valid_time=1800
    127
    13     - name: Install prerequisites
    14       apt: name={{ item }} update_cache=yes state=latest
    15       loop: [
    16         'subversion', 'build-essential', 'wget',
     8- name: Install prerequisites
     9  apt: name={{ item }} update_cache=yes state=latest
     10  loop: [
     11    'subversion', 'build-essential', 'wget',
    1712
    18         # As well as using 'unzip', the greenstone3 compile sequence currently uses
    19         # 'zip' in a handful of places, such as:
    20         #     <gsdl3srchome>/gli/makejar.sh
    21         'zip', 'unzip',
     13    # As well as using 'unzip', the greenstone3 compile sequence currently uses
     14    # 'zip' in a handful of places, such as:
     15    #     <gsdl3srchome>/gli/makejar.sh
     16    'zip', 'unzip',
    2217
    23         # Choosing to install the latest ImageMagick, rather than work
    24         # with the one included as a Greenstone3 extension, as that
    25         # latter is getting a bit old 'imagemagick',
     18    # Choosing to install the latest ImageMagick, rather than work
     19    # with the one included as a Greenstone3 extension, as that
     20    # latter is getting a bit old 'imagemagick',
    2621       
    27         # The following needed for WebSwing on a headless server
    28         'libxrender1', 'libxtst6', 'libxi6', 'xvfb',
     22    # The following needed for WebSwing on a headless server
     23    'libxrender1', 'libxtst6', 'libxi6', 'xvfb',
    2924
    30         # The following are nice to have in general
    31         'plocate', 'emacs-nox'
    32       ]
     25    # The following are nice to have in general
     26    'plocate', 'emacs-nox'
     27  ]
Note: See TracChangeset for help on using the changeset viewer.