main.yml 324 B

12345678910111213
  1. ---
  2. # Sets the lab env up for Streams BF labs.
  3. #
  4. # For now, just resets the Java alternatives back to Java 21.
  5. #
  6. - name: Ensure Java is versioned correctly for Streams BF labs
  7. become: yes
  8. ansible.builtin.command:
  9. cmd: /usr/sbin/alternatives --set {{ item }} java-21-openjdk.x86_64
  10. loop:
  11. - java
  12. - javac
  13. ...