Changeset 3657 in MondoRescue
- Timestamp:
- Apr 28, 2017, 12:00:07 AM (8 years ago)
- Location:
- branches/3.3/ansible
- Files:
-
- 18 added
- 2 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/ansible/group_vars/all
r3656 r3657 1 1 --- 2 2 domain: mondorescue.org 3 host: mondorescue.hpintelco.org 3 4 dns1: 10.11.0.13 4 5 dns2: 10.11.0.14 5 6 ip_ext: 185.170.48.239 6 7 ip_int: 10.11.7.195 7 smtp: mail.hpintelco.org 8 netmask_int: 255.255.255.192 9 gw: 10.11.7.193 10 smtp: 10.11.3.13 11 hyperlinux: 82.236.159.40 12 # "{{ lookup('dig', 'www.hyper-linux.org') }}" 13 sshkey: 14 "{{ lookup('file', '/users/bruno/.ssh/id_dsa.pub') }}" -
branches/3.3/ansible/inventory
r3656 r3657 8 8 [smtp] 9 9 # Default conf for smtp is to be a client 10 www.mondorescue.org 11 12 [sympa] 10 13 www.mondorescue.org 11 14 … … 33 36 [urpmi] 34 37 www.mondorescue.org 38 39 [system] 40 www.mondorescue.org -
branches/3.3/ansible/inventory.int
r3656 r3657 8 8 [smtp] 9 9 # Default conf for smtp is to be a client 10 mondo.hpintelco.org 11 12 [sympa] 10 13 mondo.hpintelco.org 11 14 … … 20 23 21 24 [trac] 22 www.mondorescue.org25 mondo.hpintelco.org 23 26 24 27 [svn] … … 33 36 [urpmi] 34 37 mondo.hpintelco.org 38 39 [system] 40 mondo.hpintelco.org -
branches/3.3/ansible/roles/rsync/tasks/main.yml
r3656 r3657 6 6 7 7 - name: Configure rsync 8 copy: src= files/rsyncd.conf dest=/etc/rsyncd.conf owner=root group=root mode=0600 backup=yes8 copy: src=templates/rsyncd.conf dest=/etc/rsyncd.conf owner=root group=root mode=0600 backup=yes 9 9 notify: 10 10 - restart rsync -
branches/3.3/ansible/roles/shorewall/defaults/main.yml
r3656 r3657 57 57 - { action: ACCEPT, source: fw, destination: net, protocol: tcp, destination_port: 80 } 58 58 - { 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 90 90 # The mapping to the postfix user is to ensure that root's mail 91 91 # doesn't get lost on a system installed out of the box. 92 # For Trac/mail integration 93 #trac: |"/usr/local/bin/run_email2trac 94 bruno: bruno@hyper-linux.org 95 bruno.cornec: bruno@hyper-linux.org 96 bc: bruno.cornec@hpe.com 97 andree: aleidenf@bigpond.net.au 98 andree.leidenfrost: aleidenf@bigpond.net.au 99 hugo: hugorabson@sbcglobal.net 100 hugo.rabson: hugorabson@sbcglobal.net -
branches/3.3/ansible/roles/trac/templates/trac.ini
r3656 r3657 13 13 user_lock_max_time = 0 14 14 verify_email = true 15 #register_check = EmailCheck 15 register_check = EmailCheck,RegistrationFilterAdapter 16 16 17 17 [attachment] -
branches/3.3/ansible/roles/urpmi/tasks/main.yml
r3655 r3657 2 2 3 3 - 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 5 8 notify: 6 9 - restart urpmi -
branches/3.3/ansible/site.yml
r3656 r3657 1 1 --- 2 - include: system.yml 2 3 - include: resolvconf.yml 3 4 - include: urpmi.yml
Note:
See TracChangeset
for help on using the changeset viewer.