Hallo Leute,
bekomme neuerdings bei einer Neuinstallation reproduzierbar ständig folgende Fehlermeldung:
>>>>>>
TASK [yavdr-xorg : yavdr-frontend | set attach on startup to "{{ yavdr_frontend.attach_on_startup }}"] *************************fatal: [localhost]: FAILED! => {}
MSG:
The task includes an option with an undefined variable. The error was: 'yavdr_frontend' is undefined
The error appears to be in '/home/heinz/yavdr-ansible/roles/yavdr-xorg/tasks/setup-xorg.yml': line 82, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: yavdr-frontend | set attach on startup to "{{ yavdr_frontend.attach_on_startup }}"
^ here
We could be wrong, but this one looks like it might be an issue with
missing quotes. Always quote template expression brackets when they
start a value. For instance:
with_items:
- {{ foo }}
Should be written as:
with_items:
- "{{ foo }}"
PLAY RECAP *********************************************************************************************************************
localhost : ok=17 changed=1 unreachable=0 failed=1 skipped=1 rescued=0 ignored=0
>>>>>>>>
Kennt jemand das Problem und wenn ja, möglichst auch eine Lösung?