You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ansible:
If your problem appears to be with Ansible, tell us:
where you run Ansible — on the server itself
what version of Ansible you're running (see ansible --version): Ansible community version 7.7.0,ansible [core 2.14.18],python version = 3.11.2,jinja version = 3.1.2,libyaml = True
Problem description:
The task includes an option with an undefined variable. The error was: 'matrix_static_files_public_well_known_element_path' is undefined. 'matrix_static_files_public_well_known_element_path' is undefined
The error appears to be in '...roles/custom/matrix-static-files/tasks/install.yml': line 24, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
# This is not necessary anymore, so we're cleaning it up.
- name: Ensure matrix-static-files element path doesn't exist
^ here
Tried git pull everything new, updating roles, restarting and rerunning...
Please help...
The text was updated successfully, but these errors were encountered:
Don't know if its really without consequences but I just commented out the complete task (as the comment above mentions its due to be removed anyway) and now the playbooks runs through without issue. As far as I tested around I couldnt see any issues so far...
Is this just a workaround or should one (or me) just remove the lines completely and file a pr?
ERROR! We were unable to read either as JSON nor YAML, these are the errors we got from each:
JSON: Expecting value: line 1 column 1 (char 0)
Syntax Error while loading YAML.
could not find expected ':'
The error appears to be in 'roles/custom/matrix-static-files/tasks/install.yml': line 17, column 12, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
<<<<<<< Updated upstream
- {path: "{{ matrix_static_files_base_path }}", when: true}
^ 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 }}"
Matrix Server:
Ansible:
If your problem appears to be with Ansible, tell us:
ansible --version
):Ansible community version 7.7.0,ansible [core 2.14.18],python version = 3.11.2,jinja version = 3.1.2,libyaml = True
Problem description:
Tried git pull everything new, updating roles, restarting and rerunning...
Please help...
The text was updated successfully, but these errors were encountered: