Changeset 3752 in MondoRescue for branches/3.3/ansible/roles


Ignore:
Timestamp:
Nov 25, 2019, 11:51:54 AM (4 years ago)
Author:
Bruno Cornec
Message:

Update server to mga7

Location:
branches/3.3/ansible/roles
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/ansible/roles/smtp/files/client/aliases

    r3669 r3752  
    100100hugo: hugorabson@sbcglobal.net
    101101hugo.rabson: hugorabson@sbcglobal.net
     102listmaster: bruno@hyper-linux.org
  • branches/3.3/ansible/roles/trac/files/dploy.ini

    r3656 r3752  
    33[account-manager]
    44htpasswd_file = /usr/local/etc/dploy.htpasswd
     5user_lock_max_time = 86400
    56
    67[header_logo]
  • branches/3.3/ansible/roles/trac/files/mondorescue.ini

    r3656 r3752  
    33[account-manager]
    44htpasswd_file = /usr/local/etc/trac.htpasswd
     5user_lock_max_time = 86400
    56
    67[header_logo]
  • branches/3.3/ansible/roles/trac/files/project-builder.ini

    r3656 r3752  
    33[account-manager]
    44htpasswd_file = /usr/local/etc/project-builder.htpasswd
     5user_lock_max_time = 86400
    56
    67[header_logo]
  • branches/3.3/ansible/roles/trac/files/pusk.ini

    r3656 r3752  
    33[account-manager]
    44htpasswd_file = /usr/local/etc/pusk.htpasswd
     5user_lock_max_time = 86400
    56
    67[header_logo]
  • branches/3.3/ansible/roles/trac/files/uuwl.ini

    r3656 r3752  
    33[account-manager]
    44htpasswd_file = /usr/local/etc/uuwl.htpasswd
     5user_lock_max_time = 86400
    56
    67[header_logo]
  • branches/3.3/ansible/roles/trac/tasks/main.yml

    r3674 r3752  
    1313  tags: trac
    1414
     15- name: Install trac plugins dir
     16  file: path=/prj/trac/plugins mode=0775 owner=apache group=apache state=directory
     17
     18  # Do it only at upgrade of trac:
    1519- name: Install trac plugins
    16   pip: name={{ item }} state=present umask=0022
     20  command: pip install --no-deps --upgrade -t /usr/lib/python2.7/site-packages/ {{ item }}
    1721  with_items:
    18     - TracAccountManager
    19     - TracTags
    20     - TracRobotsTxt
    21     - "TracSpamFilter<1.2"
    22 #  register: result
     22  - TracAccountManager
     23  - TracTags
     24  - TracRobotsTxt
     25  - TracSpamFilter
     26  - TracStats
    2327  notify: upgrade trac
    2428  tags: trac
  • branches/3.3/ansible/roles/trac/templates/trac.ini

    r3720 r3752  
    7373robotstxt.* = enabled
    7474stractistics.* = enabled
    75 tracopt.ticket.commit_updater.committicketupdater = enabled
    7675tracopt.ticket.deleter.ticketdeleter = enabled
    7776tracopt.versioncontrol.git.* = enabled
     
    8079trac.web.auth.loginmodule = disabled
    8180tractags.* = enabled
     81tracstats.* = enabled
     82tracopt.ticket.commit_updater.* = enabled
     83tracopt.ticket.commit_updater.committicketupdater = enabled
    8284
    8385[diff]
     
    283285safe_schemes = cvs, file, ftp, git, irc, http, https, news, sftp, smb, ssh, svn, svn+ssh
    284286split_page_names = false
     287
     288[inherit]
     289plugins_dir = /prj/trac/plugins
Note: See TracChangeset for help on using the changeset viewer.