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


Ignore:
Timestamp:
Apr 28, 2017, 12:00:07 AM (7 years ago)
Author:
Bruno Cornec
Message:

Adds system role and fix many other ones

Location:
branches/3.3/ansible/roles
Files:
17 added
2 deleted
5 edited

Legend:

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

    r3656 r3657  
    66
    77- name: Configure rsync
    8   copy: src=files/rsyncd.conf dest=/etc/rsyncd.conf owner=root group=root mode=0600 backup=yes
     8  copy: src=templates/rsyncd.conf dest=/etc/rsyncd.conf owner=root group=root mode=0600 backup=yes
    99  notify:
    1010    - restart rsync
  • branches/3.3/ansible/roles/shorewall/defaults/main.yml

    r3656 r3657  
    5757  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 80 }
    5858  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 443}
     59  # Outgoing SPAM
     60  - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 9999 }
     61  # Outgoing SMTP
     62- { action: ACCEPT, source: fw, destination: net:{{ smtp }}, protocol: tcp, destination_port: 25 }
     63  # Outgoing PING
     64  - { action: ACCEPT, source: fw, destination: net, protocol: icmp, destination_port: 8 }
  • branches/3.3/ansible/roles/smtp/files/client/aliases

    r3655 r3657  
    9090# The mapping to the postfix user is to ensure that root's mail
    9191# doesn't get lost on a system installed out of the box.
     92# For Trac/mail integration
     93#trac: |"/usr/local/bin/run_email2trac
     94bruno: bruno@hyper-linux.org
     95bruno.cornec: bruno@hyper-linux.org
     96bc: bruno.cornec@hpe.com
     97andree: aleidenf@bigpond.net.au
     98andree.leidenfrost: aleidenf@bigpond.net.au
     99hugo: hugorabson@sbcglobal.net
     100hugo.rabson: hugorabson@sbcglobal.net
  • branches/3.3/ansible/roles/trac/templates/trac.ini

    r3656 r3657  
    1313user_lock_max_time = 0
    1414verify_email = true
    15 #register_check = EmailCheck
     15register_check = EmailCheck,RegistrationFilterAdapter
    1616
    1717[attachment]
  • branches/3.3/ansible/roles/urpmi/tasks/main.yml

    r3655 r3657  
    22
    33- name: Check that urpmi is configured correctly
    4   copy: src=files/addmedia dest=/usr/local/bin/addmedia owner=root group=root mode=0755 backup=yes
     4  copy: src=files/{{ item }} dest=/usr/local/bin/{{ item }} owner=root group=root mode=0755 backup=yes
     5  with_items:
     6    - addmedia
     7    - upd
    58  notify:
    69    - restart urpmi
Note: See TracChangeset for help on using the changeset viewer.