In our playbook, we are making changes to the chronyd.service file. On
several different Debian devices, that file is in two different
locations:
/lib/systemd/system/chronyd.service
/etc/systemd/system/chronyd.service
We call the location using:
chronyd_systemd[system_distro]
System_distro is something we've defined with the major and minor OS versions smashed together (Debian10, CentOS7, etc.)
In the vars/main.yml file we have:
chronyd_systemd:
Debian10: /etc/systemd/system/chronyd.service
Debian11: /lib/systemd/system/chronyd.service
Ideally we'd like something like this:
chronyd-systemd:
Debian11: /lib/systemd/system/chronyd.service OR /etc/systemd/system/chronyd.service
How would we go about doing this?