Skip to content

Commit

Permalink
Merge pull request #10 from sscheib/ft-fix_assert
Browse files Browse the repository at this point in the history
Fixing assert for the new variables
  • Loading branch information
sscheib authored Mar 21, 2024
2 parents 898a768 + 39efca0 commit 16a9a59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions tasks/assert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
- '_temporary_work_dir_source_files_path_group'
- '_temporary_work_dir_source_files_path_mode'
- '_dest_dir_path'
- '_dest_dir_owner'
- '_dest_dir_group'
- '_dest_dir_mode'
- '_dest_dir_path_owner'
- '_dest_dir_path_group'
- '_dest_dir_path_mode'
- '_xorriso_package_name'
- '_isolinux_bin_path'
- '_boot_cat_path'
Expand Down Expand Up @@ -148,7 +148,7 @@
- "lookup('ansible.builtin.vars', __var) != ''"
success_msg: "Variable '{{ __var }}' defined properly - value: '{{ lookup('ansible.builtin.vars', __var) }}'"
fail_msg: "Variable '{{ __var }}' failed to validate"
quiet: '{{ _sat_quiet_assert }}'
quiet: '{{ _quiet_assert }}'
when: >-
lookup('ansible.builtin.vars', __var, default='') is defined
and lookup('ansible.builtin.vars', __var, default='') != ''
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ _temporary_work_dir_source_files_path_mode: >-
# destination directory for the custom ISO
_dest_dir_path: '{{ dest_dir_path | default(_def_dest_dir_path) }}'
_dest_dir_path_owner: '{{ dest_dir_path_owner | default(_def_dest_dir_path_owner) }}'
_dest_dir_path_group: '{{ dest_dir_path_group | default(_dest_dir_path_group) }}'
_dest_dir_path_group: '{{ dest_dir_path_group | default(_def_dest_dir_path_group) }}'
_dest_dir_path_mode: '{{ dest_dir_path_mode | default(_def_dest_dir_path_mode) }}'

# filename to use for the custom ISO
Expand Down

0 comments on commit 16a9a59

Please sign in to comment.