Changeset 3795 in MondoRescue for branches/3.3/ansible/roles/trac


Ignore:
Timestamp:
Feb 15, 2024, 3:55:18 PM (4 months ago)
Author:
Bruno Cornec
Message:

Untag v3.3.0 never really published in the past - will start from here

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/ansible/roles/trac/tasks/main.yml

    r3752 r3795  
    22
    33- name: Check that docutils is installed
    4   urpmi: name=python-docutils state=installed no-recommends=yes
     4  urpmi: name=python-docutils state=installed no_recommends=yes
    55  tags: trac
    66
    77- name: Check that pip is installed
    8   urpmi: name=python-pip state=installed no-recommends=yes
     8  urpmi: name=python-pip state=installed no_recommends=yes
    99  tags: trac
    1010
    1111- name: Install trac with fcgi
    12   urpmi: name=trac-fcgi state=installed no-recommends=yes
     12  urpmi: name=trac-fcgi state=installed no_recommends=yes
    1313  tags: trac
    1414
     
    1818  # Do it only at upgrade of trac:
    1919- name: Install trac plugins
    20   command: pip install --no-deps --upgrade -t /usr/lib/python2.7/site-packages/ {{ item }}
     20  command: pip install --no-deps --upgrade -t /usr/lib/python3.10/site-packages/ {{ item }}
    2121  with_items:
    22   - TracAccountManager
     22    #- TracAccountManager # Installed from trunk
    2323  - TracTags
    2424  - TracRobotsTxt
Note: See TracChangeset for help on using the changeset viewer.