Compare commits

...

4 commits

Author SHA1 Message Date
David Prevot aa13171f91 Changelog for previous commit
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2624|4|2620|5|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/361//ansiblelint">Evolix » ansible-roles » unstable #361</a>
gitea/ansible-roles/pipeline/head This commit looks good
2023-09-26 18:00:59 +02:00
David Prevot ec4c9108e7 Allow Java 17 2023-09-26 18:00:57 +02:00
David Prevot c03dd0ca2f Changelog for previous commit 2023-09-26 18:00:48 +02:00
David Prevot d69259f2ca LXC: Drop openssh-server from just installed container 2023-09-26 18:00:42 +02:00
3 changed files with 8 additions and 0 deletions

View file

@ -39,6 +39,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* userlogrotate: add a `userlogpurge` script disabled by default
* userlogrotate: new version, with separate conf file
* userlogrotate: rotate also php.log
* java: allow version 17
### Changed
@ -61,6 +62,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* postgresql: fix task `update apt cache` for PGDG repo
* redis: standardize plugins path from `/usr/local/share/munin/` to `/usr/local/lib/munin/plugins/`
* varnish: allow the systemd template to be overridden with a template outside of the role
* lxc: purge openssh-server from container on install
### Fixed

View file

@ -2,3 +2,4 @@
java_bin_path:
8: /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
11: /usr/lib/jvm/java-11-openjdk-amd64/bin/java
17: /usr/lib/jvm/java-17-openjdk-amd64/bin/java

View file

@ -70,3 +70,8 @@
remote_src: true
dest: "/var/lib/lxc/{{ name }}/rootfs/etc/profile.d/evolinux.sh"
mode: '0644'
- name: "Purge OpenSSH in container {{ name }}"
community.general.lxc_container:
name: "{{ name }}"
container_command: "DEBIAN_FRONTEND=noninteractive apt-get purge -y openssh-server"