git pushMerge branch 'unstable' of gitea.evolix.org:evolix/ansible-roles into unstable
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
Bruno Tatu 2022-12-14 09:50:21 +01:00
commit fa9d5b8b81
61 changed files with 36 additions and 216 deletions

View file

@ -29,7 +29,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evocheck: install script according to Debian version * evocheck: install script according to Debian version
* evolinux-base: utils.yml can be excluded * evolinux-base: utils.yml can be excluded
* evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions) * evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions)
* evolinux-user: Add sudoers privilege for chck php\_fpm81 * evolinux-user: Add sudoers privilege for check php\_fpm81
* evomaintenance: allow missing API endpoint if APi is disabled * evomaintenance: allow missing API endpoint if APi is disabled
* java: use default JRE package when version is not specified * java: use default JRE package when version is not specified
* listupgrade: better detection for PostgreSQL * listupgrade: better detection for PostgreSQL
@ -44,8 +44,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
* squid: whitelist deb.freexian.com * squid: whitelist deb.freexian.com
* varnish: better package facts usage with check mode and tags * varnish: better package facts usage with check mode and tags
* varnish: systemd override depends on Varnish version instead of Debian version * varnish: systemd override depends on Varnish version instead of Debian version
* keepalived: change exit code (warning if runnin but not on expected state ; critical if not running) * keepalived: change exit code (warning if running but not on expected state ; critical if not running)
* openvpn: shellpki upstream release 22.12 * openvpn: shellpki upstream release 22.12.2
* openvpn: specifies that the mail for expirations is for OpenVPN * openvpn: specifies that the mail for expirations is for OpenVPN
### Fixed ### Fixed
@ -55,9 +55,12 @@ The **patch** part changes is incremented if multiple releases happen the same m
* varnish: fix missing state, that blocked the task * varnish: fix missing state, that blocked the task
* proftpd: Fix format of public key files controlled by ansible * proftpd: Fix format of public key files controlled by ansible
* proftpd: Fix mode of public key directory and files (they have to be accessible by proftpd:nobody) * proftpd: Fix mode of public key directory and files (they have to be accessible by proftpd:nobody)
* openvpn: Fix mode of shellpki script
### Removed ### Removed
* openvpn: Deleted the task fixing the CRL rights since it has been fixed in upstream
### Security ### Security
## [22.09] 2022-09-19 ## [22.09] 2022-09-19

View file

@ -3,16 +3,13 @@
service: service:
name: apache2 name: apache2
state: restarted state: restarted
when: not ansible_check_mode
- name: reload apache - name: reload apache
service: service:
name: apache2 name: apache2
state: reloaded state: reloaded
when: not ansible_check_mode
- name: restart munin-node - name: restart munin-node
service: service:
name: munin-node name: munin-node
state: restarted state: restarted
when: not ansible_check_mode

View file

@ -22,7 +22,6 @@
state: present state: present
tags: tags:
- apache - apache
when: not ansible_check_mode
- name: Copy private_htpasswd - name: Copy private_htpasswd
copy: copy:
@ -45,7 +44,6 @@
notify: reload apache notify: reload apache
tags: tags:
- apache - apache
when: not ansible_check_mode
- name: remove user:pwd from private htpasswd - name: remove user:pwd from private htpasswd
lineinfile: lineinfile:
@ -56,4 +54,3 @@
notify: reload apache notify: reload apache
tags: tags:
- apache - apache
when: not ansible_check_mode

View file

@ -10,7 +10,6 @@
tags: tags:
- apache - apache
- ips - ips
when: not ansible_check_mode
- name: remove IP addresses from private IP whitelist - name: remove IP addresses from private IP whitelist
lineinfile: lineinfile:

View file

@ -6,7 +6,6 @@
state: present state: present
tags: tags:
- apache - apache
when: not ansible_check_mode
- name: Add log2mail config for Apache segfaults - name: Add log2mail config for Apache segfaults
template: template:

View file

@ -53,7 +53,6 @@
notify: reload apache notify: reload apache
tags: tags:
- apache - apache
when: not ansible_check_mode
- name: basic modules are enabled - name: basic modules are enabled
apache2_module: apache2_module:
@ -194,7 +193,6 @@
replace: "{{ apache_logrotate_frequency }}" replace: "{{ apache_logrotate_frequency }}"
tags: tags:
- apache - apache
when: not ansible_check_mode
- name: "logrotate: rotate {{ apache_logrotate_rotate }}" - name: "logrotate: rotate {{ apache_logrotate_rotate }}"
replace: replace:
@ -203,7 +201,6 @@
replace: '\1 {{ apache_logrotate_rotate }}' replace: '\1 {{ apache_logrotate_rotate }}'
tags: tags:
- apache - apache
when: not ansible_check_mode
- include: log2mail.yml - include: log2mail.yml
when: apache_log2mail_include when: apache_log2mail_include

View file

@ -23,7 +23,6 @@
tags: tags:
- apache - apache
- munin - munin
when: not ansible_check_mode
- name: "Install fcgi packages for Munin graphs" - name: "Install fcgi packages for Munin graphs"
apt: apt:
@ -44,7 +43,6 @@
tags: tags:
- apache - apache
- munin - munin
when: not ansible_check_mode
- name: "Apache has access to /var/log/munin/" - name: "Apache has access to /var/log/munin/"
file: file:
@ -53,4 +51,3 @@
tags: tags:
- apache - apache
- munin - munin
when: not ansible_check_mode

View file

@ -26,12 +26,10 @@
changed_when: False changed_when: False
check_mode: no check_mode: no
register: new_apache_serverstatus_suffix register: new_apache_serverstatus_suffix
when: not ansible_check_mode
- name: overwrite apache_serverstatus_suffix - name: overwrite apache_serverstatus_suffix
set_fact: set_fact:
apache_serverstatus_suffix: "{{ new_apache_serverstatus_suffix.stdout }}" apache_serverstatus_suffix: "{{ new_apache_serverstatus_suffix.stdout }}"
when: not ansible_check_mode
- debug: - debug:
var: apache_serverstatus_suffix var: apache_serverstatus_suffix
@ -42,14 +40,12 @@
dest: /var/www/index.html dest: /var/www/index.html
regexp: '__SERVERSTATUS_SUFFIX__' regexp: '__SERVERSTATUS_SUFFIX__'
replace: "{{ apache_serverstatus_suffix }}" replace: "{{ apache_serverstatus_suffix }}"
when: not ansible_check_mode
- name: add server-status suffix in default site index if missing - name: add server-status suffix in default site index if missing
replace: replace:
dest: /var/www/index.html dest: /var/www/index.html
regexp: '"/server-status-?"' regexp: '"/server-status-?"'
replace: '"/server-status-{{ apache_serverstatus_suffix }}"' replace: '"/server-status-{{ apache_serverstatus_suffix }}"'
when: not ansible_check_mode
- name: add server-status suffix in default VHost - name: add server-status suffix in default VHost
replace: replace:
@ -57,14 +53,12 @@
regexp: '<Location /server-status-?>' regexp: '<Location /server-status-?>'
replace: '<Location /server-status-{{ apache_serverstatus_suffix }}>' replace: '<Location /server-status-{{ apache_serverstatus_suffix }}>'
notify: reload apache notify: reload apache
when: not ansible_check_mode
- name: Munin configuration has a section for apache - name: Munin configuration has a section for apache
lineinfile: lineinfile:
dest: /etc/munin/plugin-conf.d/munin-node dest: /etc/munin/plugin-conf.d/munin-node
line: "[apache_*]" line: "[apache_*]"
create: no create: no
when: not ansible_check_mode
- name: apache-status URL is configured for Munin - name: apache-status URL is configured for Munin
lineinfile: lineinfile:
@ -74,4 +68,3 @@
insertafter: "[apache_*]" insertafter: "[apache_*]"
create: no create: no
notify: restart munin-node notify: restart munin-node
when: not ansible_check_mode

View file

@ -8,7 +8,6 @@
- etc-git - etc-git
when: when:
- ansible_distribution == "Debian" - ansible_distribution == "Debian"
- not ansible_check_mode
- name: Install and configure utilities - name: Install and configure utilities
include: utils.yml include: utils.yml
@ -19,6 +18,4 @@
include: repositories.yml include: repositories.yml
tags: tags:
- etc-git - etc-git
when: when: etc_git_config_repositories | bool
- etc_git_config_repositories | bool
- not ansible_check_mode

View file

@ -34,4 +34,4 @@
- _usr_share_scripts.stat.isdir - _usr_share_scripts.stat.isdir
- ansible_distribution_major_version is version('10', '>=') - ansible_distribution_major_version is version('10', '>=')
tags: tags:
- etc-git - etc-git

View file

@ -22,7 +22,6 @@
value: "root@{{ ansible_fqdn | default('localhost') }}" value: "root@{{ ansible_fqdn | default('localhost') }}"
tags: tags:
- etc-git - etc-git
when: not ansible_check_mode
- name: "{{ repository_path }}/.git is restricted to root" - name: "{{ repository_path }}/.git is restricted to root"
file: file:
@ -50,7 +49,6 @@
loop: "{{ gitignore_items | default([]) }}" loop: "{{ gitignore_items | default([]) }}"
tags: tags:
- etc-git - etc-git
when: not ansible_check_mode
- name: "does {{ repository_path }}/ have any commit?" - name: "does {{ repository_path }}/ have any commit?"
command: "git log" command: "git log"
@ -72,4 +70,4 @@
register: git_commit register: git_commit
when: git_log.rc != 0 or (git_init is defined and git_init is changed) when: git_log.rc != 0 or (git_init is defined and git_init is changed)
tags: tags:
- etc-git - etc-git

View file

@ -1,17 +1,14 @@
- name: newaliases - name: newaliases
command: newaliases command: newaliases
when: not ansible_check_mode
- name: Test Apache conf - name: Test Apache conf
command: apache2ctl -t command: apache2ctl -t
notify: "Reload Apache conf" notify: "Reload Apache conf"
when: not ansible_check_mode
- name: reload apache2 - name: reload apache2
service: service:
name: apache2 name: apache2
state: reloaded state: reloaded
when: not ansible_check_mode
- name: apt update - name: apt update
apt: apt:
@ -21,10 +18,8 @@
service: service:
name: squid3 name: squid3
state: reloaded state: reloaded
when: not ansible_check_mode
- name: reload squid - name: reload squid
service: service:
name: squid name: squid
state: reloaded state: reloaded
when: not ansible_check_mode

View file

@ -10,8 +10,6 @@
- debug: - debug:
var: evocheck_run.stdout_lines var: evocheck_run.stdout_lines
when: when: evocheck_run.stdout | length > 0
- not ansible_check_mode
- evocheck_run.stdout | length > 0
tags: tags:
- evocheck-exec - evocheck-exec

View file

@ -38,7 +38,6 @@
owner: root owner: root
group: ssl-cert group: ssl-cert
mode: "0640" mode: "0640"
when: not ansible_check_mode
- name: Create certificate for default site - name: Create certificate for default site
command: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ ansible_fqdn }}.csr -signkey /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/certs/{{ ansible_fqdn }}.crt command: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ ansible_fqdn }}.csr -signkey /etc/ssl/private/{{ ansible_fqdn }}.key -out /etc/ssl/certs/{{ ansible_fqdn }}.crt

View file

@ -43,9 +43,7 @@
state: present state: present
tags: tags:
- packages - packages
when: when: ansible_virtualization_role == "host"
- ansible_virtualization_role == "host"
- not ansible_check_mode
## RAID ## RAID
# Dell and others: MegaRAID SAS # Dell and others: MegaRAID SAS
@ -110,7 +108,6 @@
name: ssacli name: ssacli
tags: tags:
- packages - packages
when: not ansible_check_mode
when: when:
- "'Hewlett-Packard Company Smart Array' in raidmodel.stdout" - "'Hewlett-Packard Company Smart Array' in raidmodel.stdout"
- "'Adaptec Smart Storage PQI' in raidmodel.stdout" - "'Adaptec Smart Storage PQI' in raidmodel.stdout"
@ -137,7 +134,6 @@
state: present state: present
tags: tags:
- packages - packages
when: not ansible_check_mode
- name: cciss-vol-statusd init script is present (HP gen <10) - name: cciss-vol-statusd init script is present (HP gen <10)
template: template:
@ -250,7 +246,6 @@
allow_unauthenticated: yes allow_unauthenticated: yes
tags: tags:
- packages - packages
when: not ansible_check_mode
- name: Configure packages for DELL/LSI hardware - name: Configure packages for DELL/LSI hardware
template: template:
@ -268,7 +263,6 @@
tags: tags:
- packages - packages
- config - config
when: not ansible_check_mode
when: when:
- "'MegaRAID' in raidmodel.stdout" - "'MegaRAID' in raidmodel.stdout"
- evolinux_packages_hardware_raid | bool - evolinux_packages_hardware_raid | bool

View file

@ -16,7 +16,6 @@
daemon-reload: yes daemon-reload: yes
state: started state: started
enabled: yes enabled: yes
when: not ansible_check_mode
- name: log2mail config is present - name: log2mail config is present
blockinfile: blockinfile:
@ -33,5 +32,4 @@
notify: restart log2mail notify: restart log2mail
tags: tags:
- log2mail - log2mail
when: not ansible_check_mode

View file

@ -89,9 +89,7 @@
apt: apt:
name: serveur-base name: serveur-base
allow_unauthenticated: yes allow_unauthenticated: yes
when: when: evolinux_packages_serveur_base | bool
- evolinux_packages_serveur_base | bool
- not ansible_check_mode
- name: Install/Update packages for Stretch and later - name: Install/Update packages for Stretch and later
apt: apt:

View file

@ -20,7 +20,6 @@
notify: reload postfix notify: reload postfix
tags: tags:
- postfix - postfix
when: not ansible_check_mode
- name: configure postfix mynetworks - name: configure postfix mynetworks
lineinfile: lineinfile:
@ -31,7 +30,6 @@
notify: reload postfix notify: reload postfix
tags: tags:
- postfix - postfix
when: not ansible_check_mode
- name: fetch users list - name: fetch users list
shell: "set -o pipefail && getent passwd | cut -d':' -f 1 | grep -v root" shell: "set -o pipefail && getent passwd | cut -d':' -f 1 | grep -v root"
@ -50,9 +48,7 @@
line: "{{ item }}: root" line: "{{ item }}: root"
loop: "{{ non_root_users_list.stdout_lines }}" loop: "{{ non_root_users_list.stdout_lines }}"
notify: newaliases notify: newaliases
when: when: evolinux_postfix_users_alias_root | bool
- evolinux_postfix_users_alias_root | bool
- not ansible_check_mode
tags: tags:
- postfix - postfix
@ -69,9 +65,7 @@
- error - error
- bounce - bounce
notify: newaliases notify: newaliases
when: when: evolinux_postfix_mailer_alias_root | bool
- evolinux_postfix_mailer_alias_root | bool
- not ansible_check_mode
tags: tags:
- postfix - postfix
@ -81,9 +75,7 @@
regexp: "^root:" regexp: "^root:"
line: "root: {{ postfix_alias_email or general_alert_email | mandatory }}" line: "root: {{ postfix_alias_email or general_alert_email | mandatory }}"
notify: newaliases notify: newaliases
when: when: evolinux_postfix_root_alias | bool
- evolinux_postfix_root_alias | bool
- not ansible_check_mode
tags: tags:
- postfix - postfix

View file

@ -161,7 +161,6 @@
insertafter: EOF insertafter: EOF
line: 'trap "sudo /usr/share/scripts/evomaintenance.sh" 0' line: 'trap "sudo /usr/share/scripts/evomaintenance.sh" 0'
when: grep_profile_evomaintenance.rc != 0 when: grep_profile_evomaintenance.rc != 0
when: not ansible_check_mode
# SSH keys # SSH keys
@ -193,6 +192,5 @@
when: when:
- user.ssh_keys is defined - user.ssh_keys is defined
- user.ssh_keys | length > 0 - user.ssh_keys | length > 0
- not ansible_check_mode
- meta: flush_handlers - meta: flush_handlers

View file

@ -3,16 +3,13 @@
service: service:
name: haproxy name: haproxy
state: reloaded state: reloaded
when: not ansible_check_mode
- name: restart haproxy - name: restart haproxy
service: service:
name: haproxy name: haproxy
state: restarted state: restarted
when: not ansible_check_mode
- name: restart munin-node - name: restart munin-node
service: service:
name: munin-node name: munin-node
state: restarted state: restarted
when: not ansible_check_mode

View file

@ -123,7 +123,6 @@
tags: tags:
- haproxy - haproxy
- logrotate - logrotate
when: not ansible_check_mode
- name: Rotate logs with nodelaycompress - name: Rotate logs with nodelaycompress
lineinfile: lineinfile:
@ -134,7 +133,6 @@
tags: tags:
- haproxy - haproxy
- logrotate - logrotate
when: not ansible_check_mode
- name: Set net.ipv4.ip_nonlocal_bind - name: Set net.ipv4.ip_nonlocal_bind
sysctl: sysctl:

View file

@ -10,7 +10,6 @@
dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list" dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list"
regexp: 'bullseye/updates' regexp: 'bullseye/updates'
replace: 'bullseye-security' replace: 'bullseye-security'
when: not ansible_check_mode
- name: "{{ lxc_php_version }} - Copy evolinux PHP configuration" - name: "{{ lxc_php_version }} - Copy evolinux PHP configuration"
template: template:

View file

@ -10,7 +10,6 @@
dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list" dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list"
regexp: 'bullseye/updates' regexp: 'bullseye/updates'
replace: 'bullseye-security' replace: 'bullseye-security'
when: not ansible_check_mode
- name: "{{ lxc_php_version }} - Add sury repo" - name: "{{ lxc_php_version }} - Add sury repo"
lineinfile: lineinfile:

View file

@ -10,7 +10,6 @@
dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list" dest: "/var/lib/lxc/{{ lxc_php_version }}/rootfs/etc/apt/sources.list"
regexp: 'bullseye/updates' regexp: 'bullseye/updates'
replace: 'bullseye-security' replace: 'bullseye-security'
when: not ansible_check_mode
- name: "{{ lxc_php_version }} - Add sury repo" - name: "{{ lxc_php_version }} - Add sury repo"
lineinfile: lineinfile:

View file

@ -4,7 +4,6 @@
changed_when: false changed_when: false
check_mode: no check_mode: no
register: container_exists register: container_exists
when: not ansible_check_mode
- name: "Create container {{ name }}" - name: "Create container {{ name }}"
lxc_container: lxc_container:
@ -14,7 +13,6 @@
state: stopped state: stopped
template_options: "--arch amd64 --release {{ release }}" template_options: "--arch amd64 --release {{ release }}"
when: container_exists.stdout_lines | length == 0 when: container_exists.stdout_lines | length == 0
when: not ansible_check_mode
- name: "Disable network configuration inside container {{ name }}" - name: "Disable network configuration inside container {{ name }}"
replace: replace:
@ -22,14 +20,12 @@
regexp: "^#CONFIGURE_INTERFACES=yes" regexp: "^#CONFIGURE_INTERFACES=yes"
replace: CONFIGURE_INTERFACES=no replace: CONFIGURE_INTERFACES=no
when: lxc_network_type == "none" when: lxc_network_type == "none"
when: not ansible_check_mode
- name: "Disable interface shut down on halt inside container {{ name }} (Jessie container)" - name: "Disable interface shut down on halt inside container {{ name }} (Jessie container)"
lineinfile: lineinfile:
name: "/var/lib/lxc/{{ name }}/rootfs/etc/default/halt" name: "/var/lib/lxc/{{ name }}/rootfs/etc/default/halt"
line: "NETDOWN=no" line: "NETDOWN=no"
when: lxc_network_type == "none" and release == "jessie" when: lxc_network_type == "none" and release == "jessie"
when: not ansible_check_mode
- name: "Make the container {{ name }} poweroff on SIGPWR sent by lxc-stop (Jessie container)" - name: "Make the container {{ name }} poweroff on SIGPWR sent by lxc-stop (Jessie container)"
file: file:
@ -48,7 +44,6 @@
lineinfile: lineinfile:
name: "/var/lib/lxc/{{ name }}/rootfs/etc/hosts" name: "/var/lib/lxc/{{ name }}/rootfs/etc/hosts"
line: "127.0.0.1 {{ name }}" line: "127.0.0.1 {{ name }}"
when: not ansible_check_mode
- name: "Fix permission on /dev for container {{ name }}" - name: "Fix permission on /dev for container {{ name }}"
lineinfile: lineinfile:
@ -56,7 +51,6 @@
line: "chmod 755 /dev" line: "chmod 755 /dev"
insertbefore: "^exit 0$" insertbefore: "^exit 0$"
when: release == 'jessie' when: release == 'jessie'
when: not ansible_check_mode
- name: "Ensure that {{ name }} container is running" - name: "Ensure that {{ name }} container is running"
lxc_container: lxc_container:

View file

@ -48,7 +48,6 @@
changed_when: false changed_when: false
check_mode: no check_mode: no
register: check_fs_options register: check_fs_options
when: not ansible_check_mode
- name: Check if options are correct - name: Check if options are correct
assert: assert:
@ -57,7 +56,6 @@
- "'noexec' not in check_fs_options.stdout" - "'noexec' not in check_fs_options.stdout"
- "'nosuid' not in check_fs_options.stdout" - "'nosuid' not in check_fs_options.stdout"
msg: "LXC directory is in a filesystem with incompatible options" msg: "LXC directory is in a filesystem with incompatible options"
when: not ansible_check_mode
- name: Create containers - name: Create containers
include: create-container.yml include: create-container.yml

View file

@ -30,7 +30,6 @@
line: "# BEGIN ANSIBLE MANAGED BLOCK FOR IPS" line: "# BEGIN ANSIBLE MANAGED BLOCK FOR IPS"
insertbefore: '^# Main interface' insertbefore: '^# Main interface'
create: no create: no
when: not ansible_check_mode
- name: End marker for IP addresses - name: End marker for IP addresses
lineinfile: lineinfile:
@ -38,7 +37,6 @@
create: no create: no
line: "# END ANSIBLE MANAGED BLOCK FOR IPS" line: "# END ANSIBLE MANAGED BLOCK FOR IPS"
insertafter: '^PRIVILEGIEDIPS=' insertafter: '^PRIVILEGIEDIPS='
when: not ansible_check_mode
- name: Verify that at least 1 trusted IP is provided - name: Verify that at least 1 trusted IP is provided
assert: assert:
@ -86,7 +84,6 @@
PRIVILEGIEDIPS='{{ minifirewall_privilegied_ips | join(' ') }}' PRIVILEGIEDIPS='{{ minifirewall_privilegied_ips | join(' ') }}'
create: no create: no
register: minifirewall_config_ips register: minifirewall_config_ips
when: not ansible_check_mode
- name: Begin marker for ports - name: Begin marker for ports
lineinfile: lineinfile:
@ -94,7 +91,6 @@
line: "# BEGIN ANSIBLE MANAGED BLOCK FOR PORTS" line: "# BEGIN ANSIBLE MANAGED BLOCK FOR PORTS"
insertbefore: '^# Protected services' insertbefore: '^# Protected services'
create: no create: no
when: not ansible_check_mode
- name: End marker for ports - name: End marker for ports
lineinfile: lineinfile:
@ -102,7 +98,6 @@
line: "# END ANSIBLE MANAGED BLOCK FOR PORTS" line: "# END ANSIBLE MANAGED BLOCK FOR PORTS"
insertafter: '^SERVICESUDP3=' insertafter: '^SERVICESUDP3='
create: no create: no
when: not ansible_check_mode
- name: Configure ports - name: Configure ports
blockinfile: blockinfile:
@ -127,7 +122,6 @@
SERVICESUDP3='{{ minifirewall_private_ports_udp | join(' ') }}' SERVICESUDP3='{{ minifirewall_private_ports_udp | join(' ') }}'
create: no create: no
register: minifirewall_config_ports register: minifirewall_config_ports
when: not ansible_check_mode
- name: Configure DNSSERVEURS - name: Configure DNSSERVEURS
lineinfile: lineinfile:
@ -199,9 +193,7 @@
line: "PROXY='{{ minifirewall_proxy }}'" line: "PROXY='{{ minifirewall_proxy }}'"
regexp: "PROXY=('|\").*('|\")" regexp: "PROXY=('|\").*('|\")"
create: no create: no
when: when: minifirewall_proxy is not none
- minifirewall_proxy is not none
- not ansible_check_mode
- name: Configure PROXYPORT - name: Configure PROXYPORT
lineinfile: lineinfile:
@ -209,9 +201,7 @@
line: "PROXYPORT='{{ minifirewall_proxyport }}'" line: "PROXYPORT='{{ minifirewall_proxyport }}'"
regexp: "PROXYPORT=('|\").*('|\")" regexp: "PROXYPORT=('|\").*('|\")"
create: no create: no
when: when: minifirewall_proxyport is not none
- minifirewall_proxyport is not none
- not ansible_check_mode
# Warning: keep double quotes for the value, # Warning: keep double quotes for the value,
# since we often reference a shell variable that needs to be interpolated # since we often reference a shell variable that needs to be interpolated
@ -221,9 +211,7 @@
line: "PROXYBYPASS=\"{{ minifirewall_proxybypass | join(' ') }}\"" line: "PROXYBYPASS=\"{{ minifirewall_proxybypass | join(' ') }}\""
regexp: "PROXYBYPASS=('|\").*('|\")" regexp: "PROXYBYPASS=('|\").*('|\")"
create: no create: no
when: when: minifirewall_proxybypass is not none
- minifirewall_proxyport is not none
- not ansible_check_mode
- name: Configure BACKUPSERVERS - name: Configure BACKUPSERVERS
lineinfile: lineinfile:
@ -231,9 +219,7 @@
line: "BACKUPSERVERS='{{ minifirewall_backupservers | join(' ') }}'" line: "BACKUPSERVERS='{{ minifirewall_backupservers | join(' ') }}'"
regexp: "BACKUPSERVERS=('|\").*('|\")" regexp: "BACKUPSERVERS=('|\").*('|\")"
create: no create: no
when: when: minifirewall_backupservers is not none
- minifirewall_backupservers is not none
- not ansible_check_mode
- name: Configure SYSCTL_ICMP_ECHO_IGNORE_BROADCASTS - name: Configure SYSCTL_ICMP_ECHO_IGNORE_BROADCASTS
lineinfile: lineinfile:

View file

@ -4,14 +4,12 @@
service: service:
name: munin-node name: munin-node
state: restarted state: restarted
when: not ansible_check_mode
- name: restart munin_node - name: restart munin_node
service: service:
name: munin_node name: munin_node
state: restarted state: restarted
when: not ansible_check_mode
- name: systemd daemon-reload - name: systemd daemon-reload
systemd: systemd:
daemon_reload: yes daemon_reload: yes

View file

@ -33,7 +33,6 @@
notify: restart munin-node notify: restart munin-node
when: not ansible_hostname == "localdomain" when: not ansible_hostname == "localdomain"
when: not ansible_check_mode
tags: tags:
- munin - munin
@ -80,7 +79,6 @@
notify: restart munin-node notify: restart munin-node
tags: tags:
- munin - munin
when: not ansible_check_mode
- name: Enable sensors_ plugin on dedicated hardware - name: Enable sensors_ plugin on dedicated hardware
file: file:
@ -94,7 +92,6 @@
notify: restart munin-node notify: restart munin-node
tags: tags:
- munin - munin
when: not ansible_check_mode
- name: Enable ipmi_ plugin on dedicated hardware - name: Enable ipmi_ plugin on dedicated hardware
file: file:
@ -108,7 +105,6 @@
- temp - temp
- power - power
- volts - volts
when: not ansible_check_mode
- name: adjustments for grsec kernel - name: adjustments for grsec kernel
blockinfile: blockinfile:

View file

@ -43,4 +43,3 @@
- mysql_custom_datadir | length > 0 - mysql_custom_datadir | length > 0
- mysql_custom_datadir != mysql_current_real_datadir_test.stdout - mysql_custom_datadir != mysql_current_real_datadir_test.stdout
- not mysql_custom_datadir_test.stat.exists - not mysql_custom_datadir_test.stat.exists
- not ansible_check_mode

View file

@ -43,4 +43,3 @@
- mysql_custom_logdir | length > 0 - mysql_custom_logdir | length > 0
- mysql_custom_logdir != mysql_current_real_logdir_test.stdout - mysql_custom_logdir != mysql_current_real_logdir_test.stdout
- not mysql_custom_logdir_test.stat.exists - not mysql_custom_logdir_test.stat.exists
- not ansible_check_mode

View file

@ -42,7 +42,6 @@
tags: tags:
- mysql - mysql
- services - services
when: not ansible_check_mode
- name: apg package is installed - name: apg package is installed
apt: apt:

View file

@ -28,7 +28,6 @@
tags: tags:
- mysql - mysql
- services - services
when: not ansible_check_mode
- name: apg package is installed - name: apg package is installed
apt: apt:
@ -58,4 +57,4 @@
tags: tags:
- mysql - mysql
- packages - packages
when: ansible_python_version is version('3', '>=') when: ansible_python_version is version('3', '>=')

View file

@ -156,7 +156,6 @@
dest: /etc/cron.{{ mysql_cron_optimize_frequency | mandatory }}/mysql-optimize.sh dest: /etc/cron.{{ mysql_cron_optimize_frequency | mandatory }}/mysql-optimize.sh
state: link state: link
when: mysql_cron_optimize | bool when: mysql_cron_optimize | bool
when: not ansible_check_mode
tags: tags:
- mysql - mysql
@ -249,4 +248,4 @@
mode: "0755" mode: "0755"
force: no force: no
tags: tags:
- mysql - mysql

View file

@ -4,10 +4,8 @@
service: service:
name: nagios-nrpe-server name: nagios-nrpe-server
state: restarted state: restarted
when: not ansible_check_mode
- name: restart nrpe - name: restart nrpe
service: service:
name: nrpe name: nrpe
state: restarted state: restarted
when: not ansible_check_mode

View file

@ -21,4 +21,3 @@
notify: restart ntp notify: restart ntp
tags: tags:
- ntp - ntp
when: not ansible_check_mode

View file

@ -1,4 +1,4 @@
# VERSION="22.04" # VERSION="22.12.2"
[ ca ] [ ca ]
default_ca = CA_default default_ca = CA_default
@ -14,7 +14,7 @@ crl = $dir/crl.pem
private_key = $dir/cakey.key private_key = $dir/cakey.key
RANDFILE = $dir/.rand RANDFILE = $dir/.rand
default_days = 365 default_days = 365
default_crl_days= 365 default_crl_days= 730
default_md = sha256 default_md = sha256
preserve = no preserve = no
policy = policy_match policy = policy_match

View file

@ -5,7 +5,7 @@
set -u set -u
VERSION="22.12" VERSION="22.12.2"
show_version() { show_version() {
cat <<END cat <<END
@ -224,7 +224,7 @@ replace_existing_or_abort() {
init() { init() {
umask 0177 umask 0177
[ -d "${CA_DIR}" ] || mkdir -m 0750 "${CA_DIR}" [ -d "${CA_DIR}" ] || mkdir -m 0751 "${CA_DIR}"
[ -d "${CRT_DIR}" ] || mkdir -m 0750 "${CRT_DIR}" [ -d "${CRT_DIR}" ] || mkdir -m 0750 "${CRT_DIR}"
[ -f "${INDEX_FILE}" ] || touch "${INDEX_FILE}" [ -f "${INDEX_FILE}" ] || touch "${INDEX_FILE}"
[ -f "${INDEX_FILE}.attr" ] || touch "${INDEX_FILE}.attr" [ -f "${INDEX_FILE}.attr" ] || touch "${INDEX_FILE}.attr"
@ -1103,9 +1103,11 @@ main() {
# fix right # fix right
chown -R "${PKI_USER}":"${PKI_USER}" "${CA_DIR}" chown -R "${PKI_USER}":"${PKI_USER}" "${CA_DIR}"
chmod 750 "${CA_DIR}" "${CRT_DIR}" "${KEY_DIR}" "${CSR_DIR}" "${PKCS12_DIR}" "${OVPN_DIR}" "${TMP_DIR}" chmod 750 "${CRT_DIR}" "${KEY_DIR}" "${CSR_DIR}" "${PKCS12_DIR}" "${OVPN_DIR}" "${TMP_DIR}"
chmod 600 "${INDEX_FILE}"* "${SERIAL}"* "${CA_KEY}" "${CRL}" chmod 600 "${INDEX_FILE}"* "${SERIAL}"* "${CA_KEY}"
chmod 640 "${CA_CERT}" chmod 640 "${CA_CERT}"
chmod 604 "${CRL}"
chmod 751 "${CA_DIR}"
} }
main "$@" main "$@"

View file

@ -48,7 +48,7 @@
group: "{{ item.group }}" group: "{{ item.group }}"
with_items: with_items:
- { source: "openssl.cnf", destination: "/etc/shellpki/openssl.cnf", mode: "0640", owner: "shellpki", group: "shellpki" } - { source: "openssl.cnf", destination: "/etc/shellpki/openssl.cnf", mode: "0640", owner: "shellpki", group: "shellpki" }
- { source: "shellpki", destination: "/usr/local/sbin/shellpki", mode: "0755", owner: "root", group: "root" } - { source: "shellpki", destination: "/usr/local/sbin/shellpki", mode: "0750", owner: "root", group: "root" }
- name: Add sudo rights - name: Add sudo rights
lineinfile: lineinfile:
@ -77,16 +77,6 @@
- include_role: - include_role:
name: evolix/remount-usr name: evolix/remount-usr
- name: Fix CRL rights in shellpki command
lineinfile:
dest: "/usr/local/sbin/shellpki"
regexp: '{{ item.regexp }}'
insertafter: "{{ item.insertafter }}"
line: "{{ item.line }}"
with_items:
- { regexp: '^ chmod 604 /etc/shellpki/crl.pem$', line: " chmod 604 /etc/shellpki/crl.pem", insertafter: '^ chmod 640 "\${CACERT}"$' }
- { regexp: '^ chmod 751 /etc/shellpki/$', line: " chmod 751 /etc/shellpki/", insertafter: '^ chmod 604 /etc/shellpki/crl.pem$' }
- name: Deploy OpenVPN server config - name: Deploy OpenVPN server config
template: template:
src: "server.conf.j2" src: "server.conf.j2"

View file

@ -38,7 +38,7 @@
group: "{{ item.group }}" group: "{{ item.group }}"
with_items: with_items:
- { source: "openssl.cnf", destination: "/etc/shellpki/openssl.cnf", mode: "0640", owner: "_shellpki", group: "_shellpki" } - { source: "openssl.cnf", destination: "/etc/shellpki/openssl.cnf", mode: "0640", owner: "_shellpki", group: "_shellpki" }
- { source: "shellpki", destination: "/usr/local/sbin/shellpki", mode: "0755", owner: "root", group: "wheel" } - { source: "shellpki", destination: "/usr/local/sbin/shellpki", mode: "0750", owner: "root", group: "wheel" }
- name: Add sudo rights - name: Add sudo rights
lineinfile: lineinfile:
@ -60,16 +60,6 @@
path: /etc/shellpki/dh2048.pem path: /etc/shellpki/dh2048.pem
size: 2048 size: 2048
- name: Fix CRL rights in shellpki command
lineinfile:
dest: "/usr/local/sbin/shellpki"
regexp: '{{ item.regexp }}'
insertafter: "{{ item.insertafter }}"
line: "{{ item.line }}"
with_items:
- { regexp: '^ chmod 604 /etc/shellpki/crl.pem$', line: " chmod 604 /etc/shellpki/crl.pem", insertafter: '^ chmod 640 "\${CACERT}"$' }
- { regexp: '^ chmod 751 /etc/shellpki/$', line: " chmod 751 /etc/shellpki/", insertafter: '^ chmod 604 /etc/shellpki/crl.pem$' }
- name: Deploy OpenVPN server config - name: Deploy OpenVPN server config
template: template:
src: "server.conf.j2" src: "server.conf.j2"

View file

@ -14,9 +14,7 @@
block: | block: |
# Used for Evoadmin-web # Used for Evoadmin-web
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
when: when: envvar_grep_path.rc != 0
- envvar_grep_path.rc != 0
- not ansible_check_mode
- name: Additional packages are installed - name: Additional packages are installed
apt: apt:
@ -36,7 +34,6 @@
- negotiation - negotiation
- alias - alias
- log_forensic - log_forensic
when: not ansible_check_mode
- name: Copy Apache settings for modules - name: Copy Apache settings for modules
copy: copy:
@ -63,4 +60,3 @@
loop: loop:
- evolinux-evasive - evolinux-evasive
- evolinux-modsec - evolinux-modsec
when: not ansible_check_mode

View file

@ -22,7 +22,6 @@
AllowFullYearView=3 AllowFullYearView=3
ErrorMessages="An error occured. Contact your Administrator" ErrorMessages="An error occured. Contact your Administrator"
mode: "0644" mode: "0644"
when: not ansible_check_mode
- name: Create conf-available/awstats-icon.conf file - name: Create conf-available/awstats-icon.conf file
copy: copy:
@ -40,7 +39,6 @@
register: command_result register: command_result
changed_when: "'Enabling' in command_result.stderr" changed_when: "'Enabling' in command_result.stderr"
notify: reload apache notify: reload apache
when: not ansible_check_mode
- name: Create awstats cron - name: Create awstats cron
lineinfile: lineinfile:
@ -48,7 +46,6 @@
create: yes create: yes
regexp: '-config=awstats' regexp: '-config=awstats'
line: "10 */6 * * * root umask 033; [ -x /usr/lib/cgi-bin/awstats.pl -a -f /etc/awstats/awstats.conf -a -r /var/log/apache2/access.log ] && /usr/lib/cgi-bin/awstats.pl -config=awstats -update >/dev/null" line: "10 */6 * * * root umask 033; [ -x /usr/lib/cgi-bin/awstats.pl -a -f /etc/awstats/awstats.conf -a -r /var/log/apache2/access.log ] && /usr/lib/cgi-bin/awstats.pl -config=awstats -update >/dev/null"
when: not ansible_check_mode
- name: Comment default awstat cron's tasks - name: Comment default awstat cron's tasks
lineinfile: lineinfile:
@ -57,4 +54,3 @@
line: '#\1' line: '#\1'
backrefs: yes backrefs: yes
state: present state: present
when: not ansible_check_mode

View file

@ -26,7 +26,6 @@
dest: /var/www/index.html dest: /var/www/index.html
line: ' <li><a href="/info.php">Infos PHP</a></li>' line: ' <li><a href="/info.php">Infos PHP</a></li>'
regexp: "Infos PHP" regexp: "Infos PHP"
when: not ansible_check_mode
- name: install opcache.php - name: install opcache.php
copy: copy:
@ -39,7 +38,6 @@
dest: /var/www/index.html dest: /var/www/index.html
line: ' <li><a href="/opcache.php">Infos OpCache PHP</a></li>' line: ' <li><a href="/opcache.php">Infos OpCache PHP</a></li>'
regexp: "Infos OpCache PHP" regexp: "Infos OpCache PHP"
when: not ansible_check_mode
- name: Add elements to user account template - name: Add elements to user account template
file: file:
@ -66,7 +64,6 @@
loop: loop:
- access.log - access.log
- error.log - error.log
when: not ansible_check_mode
- name: "Install userlogrotate (jessie)" - name: "Install userlogrotate (jessie)"
copy: copy:

View file

@ -5,7 +5,6 @@
state: present state: present
name: proxy_fcgi name: proxy_fcgi
notify: restart apache2 notify: restart apache2
when: not ansible_check_mode
- include_role: - include_role:
name: remount-usr name: remount-usr

View file

@ -65,12 +65,10 @@
changed_when: False changed_when: False
check_mode: no check_mode: no
register: new_packweb_phpmyadmin_suffix register: new_packweb_phpmyadmin_suffix
when: not ansible_check_mode
- name: overwrite packweb_phpmyadmin_suffix - name: overwrite packweb_phpmyadmin_suffix
set_fact: set_fact:
packweb_phpmyadmin_suffix: "{{ new_packweb_phpmyadmin_suffix.stdout }}" packweb_phpmyadmin_suffix: "{{ new_packweb_phpmyadmin_suffix.stdout }}"
when: not ansible_check_mode
- debug: - debug:
var: packweb_phpmyadmin_suffix var: packweb_phpmyadmin_suffix
@ -88,18 +86,15 @@
Require all denied Require all denied
Include /etc/apache2/ipaddr_whitelist.conf Include /etc/apache2/ipaddr_whitelist.conf
</Directory> </Directory>
when: not ansible_check_mode
- name: enable phpmyadmin link in default site index - name: enable phpmyadmin link in default site index
replace: replace:
dest: /var/www/index.html dest: /var/www/index.html
regexp: '<!-- <li><a href="/phpmyadmin-__PHPMYADMIN_SUFFIX__/">Accès PhpMyAdmin</a></li> -->' regexp: '<!-- <li><a href="/phpmyadmin-__PHPMYADMIN_SUFFIX__/">Accès PhpMyAdmin</a></li> -->'
replace: ' <li><a href="/phpmyadmin-__PHPMYADMIN_SUFFIX__/">Accès PhpMyAdmin</a></li>' replace: ' <li><a href="/phpmyadmin-__PHPMYADMIN_SUFFIX__/">Accès PhpMyAdmin</a></li>'
when: not ansible_check_mode
- name: replace phpmyadmin suffix in default site index - name: replace phpmyadmin suffix in default site index
replace: replace:
dest: /var/www/index.html dest: /var/www/index.html
regexp: '__PHPMYADMIN_SUFFIX__' regexp: '__PHPMYADMIN_SUFFIX__'
replace: "{{ packweb_phpmyadmin_suffix }}" replace: "{{ packweb_phpmyadmin_suffix }}"
when: not ansible_check_mode

View file

@ -4,28 +4,23 @@
service: service:
name: php5-fpm name: php5-fpm
state: restarted state: restarted
when: not ansible_check_mode
- name: restart php7.0-fpm - name: restart php7.0-fpm
service: service:
name: php7.0-fpm name: php7.0-fpm
state: restarted state: restarted
when: not ansible_check_mode
- name: restart php7.3-fpm - name: restart php7.3-fpm
service: service:
name: php7.3-fpm name: php7.3-fpm
state: restarted state: restarted
when: not ansible_check_mode
- name: restart php7.4-fpm - name: restart php7.4-fpm
service: service:
name: php7.4-fpm name: php7.4-fpm
state: restarted state: restarted
when: not ansible_check_mode
- name: restart php8.1-fpm - name: restart php8.1-fpm
service: service:
name: php8.1-fpm name: php8.1-fpm
state: restarted state: restarted
when: not ansible_check_mode

View file

@ -25,7 +25,6 @@
file: file:
dest: "{{ php_cli_custom_ini_file }}" dest: "{{ php_cli_custom_ini_file }}"
mode: "0644" mode: "0644"
when: not ansible_check_mode
- name: "Set custom values for PHP to enable Symfony" - name: "Set custom values for PHP to enable Symfony"
ini_file: ini_file:
@ -37,4 +36,3 @@
loop: loop:
- { option: "date.timezone", value: "Europe/Paris" } - { option: "date.timezone", value: "Europe/Paris" }
when: php_symfony_requirements | bool when: php_symfony_requirements | bool
when: not ansible_check_mode

View file

@ -79,14 +79,12 @@
with_items: with_items:
- /etc/php - /etc/php
- /etc/php/{{ php_version }} - /etc/php/{{ php_version }}
when: not ansible_check_mode
- include: config_cli.yml - include: config_cli.yml
- name: "Enforce permissions on PHP cli directory (Debian 12)" - name: "Enforce permissions on PHP cli directory (Debian 12)"
file: file:
dest: /etc/php/{{ php_version }}/cli dest: /etc/php/{{ php_version }}/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml - include: config_fpm.yml
when: php_fpm_enable when: php_fpm_enable
@ -96,7 +94,6 @@
dest: /etc/php/{{ php_version }}/fpm dest: /etc/php/{{ php_version }}/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable when: php_fpm_enable
when: not ansible_check_mode
- include: config_apache.yml - include: config_apache.yml
when: php_apache_enable when: php_apache_enable
@ -106,7 +103,6 @@
dest: /etc/php/{{ php_version }}/apache2 dest: /etc/php/{{ php_version }}/apache2
mode: "0755" mode: "0755"
when: php_apache_enable when: php_apache_enable
when: not ansible_check_mode
- include: sury_post.yml - include: sury_post.yml
when: php_sury_enable when: php_sury_enable

View file

@ -68,14 +68,12 @@
with_items: with_items:
- /etc/php - /etc/php
- /etc/php/7.4 - /etc/php/7.4
when: not ansible_check_mode
- include: config_cli.yml - include: config_cli.yml
- name: "Enforce permissions on PHP cli directory (Debian 11)" - name: "Enforce permissions on PHP cli directory (Debian 11)"
file: file:
dest: /etc/php/7.4/cli dest: /etc/php/7.4/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml - include: config_fpm.yml
when: php_fpm_enable when: php_fpm_enable
@ -85,7 +83,6 @@
dest: /etc/php/7.4/fpm dest: /etc/php/7.4/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable when: php_fpm_enable
when: not ansible_check_mode
- include: config_apache.yml - include: config_apache.yml
when: php_apache_enable when: php_apache_enable
@ -95,7 +92,6 @@
dest: /etc/php/7.4/apache2 dest: /etc/php/7.4/apache2
mode: "0755" mode: "0755"
when: php_apache_enable when: php_apache_enable
when: not ansible_check_mode
- include: sury_post.yml - include: sury_post.yml
when: php_sury_enable when: php_sury_enable

View file

@ -68,14 +68,12 @@
loop: loop:
- /etc/php - /etc/php
- /etc/php/7.3 - /etc/php/7.3
when: not ansible_check_mode
- include: config_cli.yml - include: config_cli.yml
- name: "Enforce permissions on PHP cli directory (Debian 10)" - name: "Enforce permissions on PHP cli directory (Debian 10)"
file: file:
dest: /etc/php/7.3/cli dest: /etc/php/7.3/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml - include: config_fpm.yml
when: php_fpm_enable | bool when: php_fpm_enable | bool
@ -85,7 +83,6 @@
dest: /etc/php/7.3/fpm dest: /etc/php/7.3/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable | bool when: php_fpm_enable | bool
when: not ansible_check_mode
- include: config_apache.yml - include: config_apache.yml
when: php_apache_enable | bool when: php_apache_enable | bool
@ -95,7 +92,6 @@
dest: /etc/php/7.3/apache2 dest: /etc/php/7.3/apache2
mode: "0755" mode: "0755"
when: php_apache_enable | bool when: php_apache_enable | bool
when: not ansible_check_mode
- include: sury_post.yml - include: sury_post.yml
when: php_sury_enable | bool when: php_sury_enable | bool

View file

@ -56,7 +56,6 @@
file: file:
dest: /etc/php5 dest: /etc/php5
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_cli.yml - include: config_cli.yml
@ -64,7 +63,6 @@
file: file:
dest: /etc/php5/cli dest: /etc/php5/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml - include: config_fpm.yml
when: php_fpm_enable | bool when: php_fpm_enable | bool
@ -74,7 +72,6 @@
dest: /etc/php5/fpm dest: /etc/php5/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable | bool when: php_fpm_enable | bool
when: not ansible_check_mode
- include: config_apache.yml - include: config_apache.yml
when: php_apache_enable | bool when: php_apache_enable | bool
@ -84,4 +81,3 @@
dest: /etc/php5/apache2 dest: /etc/php5/apache2
mode: "0755" mode: "0755"
when: php_apache_enable | bool when: php_apache_enable | bool
when: not ansible_check_mode

View file

@ -68,7 +68,6 @@
loop: loop:
- /etc/php - /etc/php
- /etc/php/7.0 - /etc/php/7.0
when: not ansible_check_mode
- include: config_cli.yml - include: config_cli.yml
@ -76,7 +75,6 @@
file: file:
dest: /etc/php/7.0/cli dest: /etc/php/7.0/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml - include: config_fpm.yml
when: php_fpm_enable | bool when: php_fpm_enable | bool
@ -86,7 +84,6 @@
dest: /etc/php/7.0/fpm dest: /etc/php/7.0/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable | bool when: php_fpm_enable | bool
when: not ansible_check_mode
- include: config_apache.yml - include: config_apache.yml
when: php_apache_enable | bool when: php_apache_enable | bool
@ -96,7 +93,6 @@
dest: /etc/php/7.0/apache2 dest: /etc/php/7.0/apache2
mode: "0755" mode: "0755"
when: php_apache_enable | bool when: php_apache_enable | bool
when: not ansible_check_mode
- include: sury_post.yml - include: sury_post.yml
when: php_sury_enable | bool when: php_sury_enable | bool

View file

@ -14,7 +14,6 @@
file: file:
dest: /etc/php/7.4/cli dest: /etc/php/7.4/cli
mode: "0755" mode: "0755"
when: not ansible_check_mode
- name: Symlink Evolix Apache config files from 7.4 to 7.0 - name: Symlink Evolix Apache config files from 7.4 to 7.0
file: file:
@ -32,7 +31,6 @@
dest: /etc/php/7.4/apache2 dest: /etc/php/7.4/apache2
mode: "0755" mode: "0755"
when: php_apache_enable | bool when: php_apache_enable | bool
when: not ansible_check_mode
- name: Symlink Evolix FPM config files from 7.4 to 7.0 - name: Symlink Evolix FPM config files from 7.4 to 7.0
file: file:
@ -52,4 +50,3 @@
dest: /etc/php/7.4/fpm dest: /etc/php/7.4/fpm
mode: "0755" mode: "0755"
when: php_fpm_enable | bool when: php_fpm_enable | bool
when: not ansible_check_mode

View file

@ -3,4 +3,3 @@
service: service:
name: proftpd name: proftpd
state: restarted state: restarted
when: not ansible_check_mode

View file

@ -70,7 +70,6 @@
notify: restart proftpd notify: restart proftpd
tags: tags:
- proftpd - proftpd
when: not ansible_check_mode
- name: Put empty vpasswd file if missing - name: Put empty vpasswd file if missing
copy: copy:
@ -93,7 +92,6 @@
notify: restart proftpd notify: restart proftpd
tags: tags:
- proftpd - proftpd
when: not ansible_check_mode
- include: accounts.yml - include: accounts.yml
when: proftpd_accounts | length > 0 when: proftpd_accounts | length > 0

View file

@ -3,38 +3,31 @@
service: service:
name: munin-node name: munin-node
state: restarted state: restarted
when: not ansible_check_mode
- name: restart squid - name: restart squid
service: service:
name: squid name: squid
state: restarted state: restarted
when: not ansible_check_mode
- name: reload squid - name: reload squid
service: service:
name: squid name: squid
state: reloaded state: reloaded
when: not ansible_check_mode
- name: restart squid3 - name: restart squid3
service: service:
name: squid3 name: squid3
state: restarted state: restarted
when: not ansible_check_mode
- name: reload squid3 - name: reload squid3
service: service:
name: squid3 name: squid3
state: reloaded state: reloaded
when: not ansible_check_mode
- name: restart log2mail - name: restart log2mail
service: service:
name: log2mail name: log2mail
state: restarted state: restarted
when: not ansible_check_mode
- name: restart minifirewall - name: restart minifirewall
command: /etc/init.d/minifirewall restart command: /etc/init.d/minifirewall restart
when: not ansible_check_mode

View file

@ -121,7 +121,6 @@
when: when:
- squid_localproxy_enable | bool - squid_localproxy_enable | bool
- ansible_distribution_major_version is version('9', '>=') - ansible_distribution_major_version is version('9', '>=')
- not ansible_check_mode
- name: "evolinux custom overrides (Debian 9 or later)" - name: "evolinux custom overrides (Debian 9 or later)"
copy: copy:

View file

@ -10,4 +10,3 @@
remote_src: False remote_src: False
src: ftp/evolinux.conf.diff src: ftp/evolinux.conf.diff
dest: /etc/proftpd/conf.d/z-evolinux.conf dest: /etc/proftpd/conf.d/z-evolinux.conf
when: not ansible_check_mode

View file

@ -3,9 +3,7 @@
- name: "Ensure that evoadmin_contact_email is defined" - name: "Ensure that evoadmin_contact_email is defined"
fail: fail:
msg: Please configure var evoadmin_contact_email msg: Please configure var evoadmin_contact_email
when: when: evoadmin_contact_email is none or evoadmin_contact_email | length == 0
- evoadmin_contact_email is none or evoadmin_contact_email | length == 0
- not ansible_check_mode
- include: packages.yml - include: packages.yml
@ -25,4 +23,3 @@
marker: "<!-- {mark} evoadmin-web section -->" marker: "<!-- {mark} evoadmin-web section -->"
block: | block: |
<li><a href="https://{{ evoadmin_host }}">Interface admin web (EvoAdmin-web)</a></li> <li><a href="https://{{ evoadmin_host }}">Interface admin web (EvoAdmin-web)</a></li>
when: not ansible_check_mode

View file

@ -17,7 +17,6 @@
owner: root owner: root
group: ssl-cert group: ssl-cert
mode: "0640" mode: "0640"
when: not ansible_check_mode
- name: Create certificate for default site - name: Create certificate for default site
command: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ evoadmin_host }}.csr -signkey /etc/ssl/private/{{ evoadmin_host }}.key -out /etc/ssl/certs/{{ evoadmin_host }}.crt command: openssl x509 -req -days 3650 -sha256 -in /etc/ssl/{{ evoadmin_host }}.csr -signkey /etc/ssl/private/{{ evoadmin_host }}.key -out /etc/ssl/certs/{{ evoadmin_host }}.crt

View file

@ -54,9 +54,7 @@
dest: "{{ evoadmin_document_root }}" dest: "{{ evoadmin_document_root }}"
version: jessie version: jessie
update: False update: False
when: when: ansible_distribution_release == "jessie"
- ansible_distribution_release == "jessie"
- not ansible_check_mode
- name: "Clone evoadmin repository (Debian 9 or later)" - name: "Clone evoadmin repository (Debian 9 or later)"
git: git:
@ -64,9 +62,7 @@
dest: "{{ evoadmin_document_root }}" dest: "{{ evoadmin_document_root }}"
version: master version: master
update: False update: False
when: when: ansible_distribution_major_version is version('9', '>=')
- ansible_distribution_major_version is version('9', '>=')
- not ansible_check_mode
- name: Change ownership on git repository - name: Change ownership on git repository
file: file: