Skip to content

Commit

Permalink
ci: Simulate Filesystem for Molecule
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobLichterfeld committed Sep 6, 2023
1 parent 73c1368 commit fa8c453
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,31 +47,32 @@

- name: Simulate Splash Screen Source Directory
ansible.builtin.file:
path: "./molecule/default/splashscreens_to_copy"
path: "/home/runner/work/ansible-role-remarkable_templates_and_splashscreen/ansible-role-remarkable_templates_and_splashscreen/molecule/default/splashscreens_to_copy"
state: directory
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
mode: '0755'

- name: Simulate Splash Screen Source File
ansible.builtin.file:
path: "./molecule/default/splashscreens_to_copy/suspended.png"

path: "/home/runner/work/ansible-role-remarkable_templates_and_splashscreen/ansible-role-remarkable_templates_and_splashscreen/molecule/default/splashscreens_to_copy/suspended.png"
state: touch
mode: '0644'
modification_time: preserve
access_time: preserve

- name: Simulate Templates Source Directory
ansible.builtin.file:
path: "./molecule/default/templates_to_copy"
path: "/home/runner/work/ansible-role-remarkable_templates_and_splashscreen/ansible-role-remarkable_templates_and_splashscreen/molecule/default/templates_to_copy"
state: directory
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
mode: '0755'

- name: Simulate Templates Source File
ansible.builtin.file:
path: "./molecule/default/templates_to_copy/templates.json"
path: "/home/runner/work/ansible-role-remarkable_templates_and_splashscreen/ansible-role-remarkable_templates_and_splashscreen/molecule/default/templates_to_copy/templates.json"
state: touch
mode: '0644'
modification_time: preserve
Expand Down

0 comments on commit fa8c453

Please sign in to comment.