common/tasks/environment.yaml
Simon Cornet 2272aa6a58
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

12 lines
296 B
YAML

---
# set environment file
- name: "set environment file"
ansible.builtin.template:
src: "templates/environment/environment.j2"
dest: "/etc/environment"
owner: "root"
group: "root"
mode: "0644"
when: 'ansible_facts["distribution"] == "Ubuntu"'
tags: "environment-file"